HTML How-to: Page structure

Below is a minimal set of tags to construct a simple HTML 5 page.

<!doctype html><HTML>
<head>
<meta charset="UTF-8">
<link rel="STYLESHEET" href="stylesheet.css" type="text/css">
<title>This is the page title</title>
<head>

<body>
<h1>Some heading text<h1>
<p>Some body text</p>

<!-- This is a comment
  other than comments, everything written between the BODY tags will appear within the browser window -->

</body>
</HTML>





Copyright © 2013-2022 Emw3.com
Some rights reserved