HTML LESSON 1
Open up Notepad and start with this...
<html>
</html>
Everything in HTML is interpreted using tags. There must be a starting tag and a closing tag.
A closing tag has / in the front.
Now include a pair of head tags.
<html>
<head>
</head>
</html>
Now include a pair of title tags within the head tags.
<html>
<head>
<title> </title>
</head>
</html>
Anything you write within the title tags becomes the stuff that appears within the upper purple
portion of the browser.
<html>
<head>
<title> This is my first web page. </title>
</head>
</html>
Now include a bunch of body tags and write anything in them.
<html>
<head>
<title> This is my first web page. </title>
</head>
<body>
</body>
</html>
The stuff that goes in the body tags becomes the main content of your website.
Now save the file. Click on File and then Save As.
Remember to include a .html extension in the end.
Note: To view your website, go to Internet Explorer or Netscape or whatever browser
you have. Click on File>>Open>>Browse and find the file you just created.
|