Horje
HTML Page Structure

Follow the Example Photo to understand HTML Page Structure.

  1. <html>
  2. <head>
  3. <title> </title>
  4. Other Meta Tag
  5. </head>
  6. <body>
  7. Contents of Page
  8. </body>
  9. </html>

Example of HTML Page Structure

Follow the example.

index.html
Example: HTML
<!DOCTYPE html>
<html lang="en">
<head> <meta charset="UTF-8" /> <meta name="viewport" content= "width=device-width, initial-scale=1.0" /> <title>Structure of HTML Document</title>
</head>
<body> <!-- Main content of website --> <h1>
Horje</h1> <p>
A computer science portal for Horje</p>
</body>
</html>

Output should be:

Example of HTML Page Structure





Related Articles
HTML HTML Introduction
HTML Code HTML Introduction
HTML Element HTML Introduction
HTML Page in Web Browsers HTML Introduction
HTML Page Structure HTML Introduction
HTML History HTML Introduction

Single Articles
Example of HTML Page Structure HTML Introduction

Category :
Web Tutorial
Sub Category :
HTML Introduction
Uploaded by :
Admin


Read Article
https://horje.com/learn/1434/reference