<! DOCTYPE html PUBLIC “-//W3C//DTD HTML 4.01//EN”>
<html>
<head>
<title> Your page title</title>
<head>
<body>
<!—site navigation menu ->
<ul class=”navbar”>
<li><a href = “index.html”>Home Page</a>
<li><a href = “about.html”>About</a>
<li><a href = “location.html”>Location</a>
<li><a href = “links.html”>Links</a>
</ul>
<!—Main Content–>
<h1> your page title</h1>
Invitation to your page
your content
more content
<Sign and date>
</body>
</html>
You can add some color to your page to make it attractive. You need to create a style sheet inside the html. You can then put the HTML and CSS in different files. Placing them in separate styles makes it possible to see the same style sheet for other HTML files. You can add the style sheet as follows.
<style type= “text/CSS”>
Body(Color: Blue; Background-color:#d8da3d)
</style>
The right fonts can turn your fonts from boring to interesting. It would help if you chose a font that is good looking without compromising on readability. Some of the popular fonts are Times New Roman and Georgia. Set the fonts as follows.
<style type= “text/CSS”>
Body {font-family: Georgia, “Times New Roman, Times, Serif;
Color: blue
Background-color: #d8da3d }
H1{ font-family:Helvetica , Geneva,Sunsans-Regular , sans-serif}
</style>
</head>
<body>