> ## Documentation Index
> Fetch the complete documentation index at: https://docs.highmark.it/llms.txt
> Use this file to discover all available pages before exploring further.

# HTML Structure Basics

> The essential structure of every web page explained simply.

Every website is built on HTML. Here is the basic skeleton you need to start.

### **The Basic Template**

Create a file named `index.html` and paste this code:

```html theme={null}
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>My First Site</title>
</head>
<body>

    <h1>Hello World!</h1>
    <p>This is my first paragraph.</p>

</body>
</html>
```

### **Explanation**

* `<!DOCTYPE html>`: Tells the browser "This is an HTML5 document".
* `<html>`: The container for everything.
* `<head>`: Contains "invisible" info for the browser.
  * `<title>`: The text you see in the browser tab.
  * `<meta>`: Settings for characters and mobile scaling.
* `<body>`: Contains **everything you see** on the page.
  * `<h1>`: A main heading (Header 1).
  * `<p>`: A paragraph of text.

### **How to View It**

1. Save the file as `index.html`.
2. Double-click it.
3. It will open in your browser showing your text!

<Info>
  Guide created by HighMark - All information and contacts on my [official website: Highmark.it](https://highmark.it)
</Info>
