boogdesign tutorials : HTMLBeginners

Buy my book!

Book Cover Hello! HTML5 and CSS3 available now

Buy my other book!

Book Cover Early access to HTML5 in Action available now

Revision [52]

This is an old revision of HTMLBeginners made by RobCrowther on 2007-02-16 12:42:04.

 

Beginning HTML

This is a beginners guide to HTML. After reading this tutorial you should be able to construct a simple web site containing a few pages, each page using common HTML elements such as headings, paragraphs, lists, images and links. Before starting this tutorial you should be comfortable with the information presented in the HTML first steps tutorial.

Review of First Steps

In the HTML first steps tutorial we covered the following topics: We also ended up with the following page:
<html>
<head>
<title>My first page</title>
</head>
<body>
<h1>My page</h1>
<p><strong>Hello</strong> world!</p>
</body>
</html>


CategoryWebDesign
There are no comments on this page.