-
Notifications
You must be signed in to change notification settings - Fork 49
/
index.html
30 lines (28 loc) · 1.07 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Cours Javascript 2019-2020 | FizzBuzz</title>
<meta name="description" content="Cours Javascript 2019-2020">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="icon.png">
<link rel="stylesheet" href="./css/min.style.css">
<meta name="theme-color" content="#fafafa">
</head>
<body class="container">
<!--[if IE]>
<p class="browserupgrade">Vous utilisez un navigateur <strong> obsolète </strong>. Veuillez <a href="https://browsehappy.com/"> mettre à niveau
votre navigateur </a> pour améliorer votre expérience et votre sécurité.
</p>
<![endif]-->
<p class="no-js__message">
Pour accéder à toutes les fonctionnalités de ce site, vous devez activer JavaScript.
Voici les <a href="https://www.enable-javascript.com/fr/">
instructions pour activer JavaScript dans votre navigateur Web</a>.
</p>
<h1 class="sr-only">FizzBuzz</h1>
<ol id="fizzbuzz" class="grid">
</ol>
<script src="js/main.js"></script>
</body>
</html>