Results 1 to 5 of 5

Thread: Html

  1. #1

    Post Html

    Over the weekend I started to create a web page in Html but nothing in the tutorial explained to my how to save the the page. Right now I have it saved in notepad as .txt. But I guess my question is how do i view it as a web page? (without seeing all the html commands) And also what is the next step for posting it on the internet and adding pic's and sound?

  2. #2
    Banned
    Join Date
    Sep 2004
    Posts
    305
    Save it as "whatever.html" and open it up with Internet Explorer or whatever browser you use.

    You need to get webspace to post it online... try geocities.com for starters and look for better ones.

    To add an image, use the img tag.. look below for example:

    Code:
    <img src="images/header.jpg" width="800" height="50">

  3. #3
    Banned
    Join Date
    Aug 2001
    Location
    Yes
    Posts
    4,424
    If you wrote your page in notepad, you'll have to save it as .html, not as .txt.
    To do this:
    File --> Save As --> set Save As Type to "All Types", then fill out the filename (yourwebpage.html).

    If you want the site on the internet, you'll need hosting. Do a Google for (free) webhosting.

  4. #4
    Senior Member
    Join Date
    Dec 2003
    Location
    LA, CA
    Posts
    292
    when you have set up your account

    connecting to an account online via ftp in dos:
    Code:
    ftp
    o ftp.YourDomain
    Username:
    Password:
    from there typing
    Code:
    help
    will list all the commands you can use and
    Code:
    help command
    will describe the command in question

    remember to type
    Code:
    binary
    once when you are connected to ensure that your documents arrive how they are sent
    A mind full of questions has no room for answers

  5. #5

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •