next up previous contents index
Next: An Explanation of the Up: Creating an HTML File Previous: Creating an HTML File

An Example of Using Basic HTML Codes

A very basic HTML file might look like this:  

<html>
<title>A Short File</title>
<body>
<h1>A Short Sample File</h1>
This is a short sample file to show you what
some basic HTML codes look like.
<p>
Remember to use a paragraph tag between 
paragraphs.
</p>
</body>
</html>

The result would look something like this:


A Short Sample File

This is a short sample file to show you what some basic HTML codes look like.

Remember to use a paragraph tag between paragraphs.



Send comments to consult@rpi.edu