Pages

Thursday 31 December 2015

Basic HTML Page Structure

HTML Page Structure

Below is a visualization of an HTML page structure:
<html>
<head>
<title>Page title</title>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
</body>
</html>
Note Only the <body> area (the white area) is displayed by the browser.

No comments:

Post a Comment