doctype html model

Solutions on MaxInterview for doctype html model by the best coders in the world

showing results for - "doctype html model"
Grainne
06 Oct 2018
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>