Files
freeCodeCamp/guide/english/html/tutorials/basic-html/index.md
Eme-rald 93b31248a4 Added Explanation. (#23748)
* Added Explanation.

* corrected title syntax
2018-10-29 15:47:58 -07:00

24 lines
495 B
Markdown

---
title: Basic HTML
---
## Basic HTML
## Basic Page Structure:
```html
<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
</html>
```
## Explanation:
The `<!DOCTYPE html>` is to tell the browser you want the page to be rendered using HTML5.
The `<head></head>` is were you want to put things that help the browser and search engines such as `<title></title>` and `<meta>`.
The `<body></body>` is were the tags that will display on the page are such as `<h1></h1>` or `<p></p>`.