Question:

How do you make a homepage in Windows Notepad using HTML?

by Guest60166  |  earlier

0 LIKES UnLike

My friend told me that they could make a homepage using HTML. I want to learn how. If anyone knows, it will be greatly appreciated. No

spam please.

 Tags:

   Report

5 ANSWERS


  1. Well if you're using JUST windows Notepad, you need background knowledge on HTML.

    Your friend probably knows how to do these homepages from scratch in notepad. You can look around on yahoo or google for some tutorials.


  2. Start here: http://dev.opera.com/articles/view/1-int...

    (At some point, someone will probably suggest W3Schools - avoid them, they have many subtle errors and their examples avoid best practise wherever possible)

  3. 1. Open up Notepad and paste the following code in it line for line:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-...

    <html xmlns="http://www.w3.org/1999/xhtml">

    <head>

    <title></title>

    </head>

    <body>

      

    </body>

    </html>

    2. Now go between the <title>and</title> tags and give your home page a title. For example: <title>My Home Page </title>

    3. Write the stuff you want to appear on your web page between the <body> and </body> tags. Let's say you want the following two "paragraphs" to appear on your web page:

    Hello World!

    This is my first web page!

    Place this code between the <body></body> tags:

    <p>Hello World!</p>

    <p>This is my first web page!</p>

    Like this:

    <body>

    <p>Hello World!</p>

    <p>This is my first web page!</p>

    </body>

    4. Go here to for image, heading and list HTML code:

    http://missingmethods.com/Programing/H/H...

    (Scroll down to number 3, I already showed you steps 1 and 2.)

    5. follow steps 4 - 6  at:

    http://missingmethods.com/Programing/H/H...

    steps 4 through 6 guide you through saving your web page and looking at it through firefox or internet explorer. There is a flash animation you can look at if you have a hard time following the steps. Note: The important thing when making a home page is to save it as index.html. However, you should follow the directions given on the web site first, to make sure every thing works properly, then go back and rename it index.html.

    I would show you steps 4 - 6 here, but the web site it is interactive and has pictures, and you can't paste pictures in this forum.

  4. u will get loads of info abt the various html tags and you have to place the title of ur home page in the title tag.. the content within body tag... and add marquees using marquee tag.. make the size adjustments properly.. place most of the links(in ahref tag) in proper places..  

  5. easy way make homepage is using HTML

    but you need code here is site

    http://www.w3schools.com/HTML/

Question Stats

Latest activity: earlier.
This question has 5 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.