The Mechanics of Web Page Design: Minimum TemplateInternet Browsers accept sloppy HTML, in the interest of being robust. You however, should take care to code correctly and avoid getting bitten in the future.So here is the minimum template: <html> <head> <title>Place a meaningful title here </title> </head> <body> Your deathless prose, well-tagged, goes here. </body> </html> Note HTML tags are lower case. This is not a requirement at the moment however upcoming specifications will make lower case a requirement. Might as well be prepared. Use a text editor of your choice, write and save the minimum template as "me_temp1.html." |