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.