Tag: HTML

HTML Sample 1

This HTML file shows a sample use of the tags shown in the last post. Notice that the tags open and close without crossing over (this is shown after the jump). Copy and paste the code into Notepad++ and save it as Sample.HTML.

<!DOCTYPE html>
<html>
<head>
<title>HTML Sample 1</title>
<meta charset=”UTF-8″/>
</head>
<body>
<h1>HTML Sample 1</h1>
<p>This sample HTML file uses <strong>all</strong> the tags covered in <em>Nat 5 – Common HTML Text Tags</em></p>
</body>
</html>

Read more