- Elements
- Tags
- Attributes
<!DOCTYPE html>
- instruction to the web browser about what version of HTML the page is written in.
- In this case, it is HTML5
- Series of elements
- Represented by tags
<html>
- element is the root element of an HTML page
<head>
- element contains meta information about the document
<title>
- element specifies a title for the document
<body>
- element contains the visible page content
<h1>
- element defines a large heading
<p>
- element defines a paragraph
- H1 to h6
<a href="https://www.w3schools.com">This is a link</a>
<br>
<!-- This is a comment →
<div>
- block -level element
<span>
Inline element
<meta>
Contains metadata
<img src="img_chania.jpg" alt="Flowers in Chania">
<meta name="viewport" content="width=device-width, initial-scale=1">