HTML: Structural Tags Example

By Xah Lee. Date: .

HTML Structural Tags

example of a typical page.

<!doctype html>
<html>

<head>

<meta charset="utf-8" />
<meta name=viewport content="width=device-width, initial-scale=1">

<link rel="stylesheet" href="../lbasic.css" />

<title>Sample HTML</title>

</head>

 <body>
  <h1>Sample HTML</h1>
  <p>Earth is round</p>
 </body>

</html>