0
18
In the code above, there are a few important parts:
The first is the DOCTYPE declaration. This tells the browser how to interpret the code. In this case, it is telling the browser that the code is written in HTML.
The second is the opening of the head tag. This tells the browser where to start looking for content.
The third is the declaration of the meta tags. These tell the browser information about the page, such as the language it is written in and the browser version.
The fourth is the declaration of the link tag. This tells the browser where to find the style.css file.
The fifth is the declaration of the script tag. This tags a JavaScript file.
The sixth is the declaration of the title tag. This is the name of the page.
Shortcut: cre.html.start
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script defer src="script.js"></script>
<title>Document</title>
</head>
<body>
<div class="container">
Starter Page
</div>
</body>
</html>