HTML ¶
Note
HTML is a language for describing the structure of a Webpage. It can handle:
- Headings
- Paragraphs
- Lists
- Images
- Links
- etc.
Basic HTML¶
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>Heading</h1>
<p>Paragraph</p>
</body>
</html>