1<!doctype html>
2<html lang="fr">
3<head>
4 <meta charset="utf-8">
5 <title>Titre de la page</title>
6 <link rel="stylesheet" href="style.css">
7 <script src="script.js"></script>
8</head>
9<body>
10 ...
11 <!-- Le reste du contenu -->
12 ...
13</body>
14</html>
1<!DOCTYPE html> <!--This doesn't have closing tag like others-->
2this means this is the version 5 of HTML or HTML5
1<!DOCTYPE html>
2it lets the browser know about the version of HTML you
3are using.but it is not nessesary
4
1<!DOCTYPE>
2<html>
3 <head>
4 <meata bla bla>
5 </head>
6 <body>
7 <p>hfkjhdskjfhkdjhfjdhkfhd</p>
8 <p>hkjdfhjdhfjhdjhfhdjfhdkj</p>
9 </body>
10</html>