|
Creating a Page in HTML This is the Basic page structure for all html pages
1. Copy and paste it into a blank notepad document
<html> <head> <title>Page Title goes here (appears in the top window bar)</title> </head> <body> The content or the body of your page goes here </body>
2. Add your content and a title and save the file as "yourfilename.html" or "yourfilename.htm"
|