next up previous contents
Next: Basic HTML Coding Up: Basic HTML Programming Previous: Summary of Basic HTML

Bare-bones example of HTML

<html>
<head>
<title> The simplest HTML example 
</title>
</head>
<body>
<h1> This is  an HTML Page </h1>
</body>
</html>

Which Looks like this when viewed through a browser:


Figure:Simplest HTML page

<html>
<head>
<title> Another simple HTML example 
</title>
</head>
<body>
<h1> This is a level-one heading </h1>

Welcome to the world of HTML.
<p>
This is one paragraph.
</p>
<p>
This is a second paragraph.
</p>
</body>
</html>

Which Looks like this when viewed through a browser:


Figure:Another simple HTML example



dave@cs.cf.ac.uk