-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (50 loc) · 1.38 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Titre de la page</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" media="screen and (max-width: 800px)" href="small_style.css" />
<script src="mon_script.js"></script>
</head>
<body>
<header>
header
</header>
<!--icone burger-->
<img src="./image/burger_icone.png" alt="burger menue icône" id="burger">
<nav>
<!--nav du haut de page-->
<ul>
<li>Acceuil</li>
<li>HTML</li>
<li>JS</li>
<li>PHP</li>
<li>Vue</li>
</ul>
</nav>
<main>
<!--Corp de la page-->
<article>
<p>
Promis je vais faire une jolie page.
</br>
Le tp d'aujourd'hui est accessible là-bas -------------->
</p>
</article>
<!--left arrow-->
<img src="./image/left_side_arrow.jpg" alt="left side arrow" id="left_arrow">
<aside>
<!--nav en sidebar-->
<ul>
<li><a href="./page_js/tp2_js.html">exercice de la sceance 4</a></li>
<li><a href="./exemple_sw_prof/PWA Tutorial.html">test SW</a></li></li>
<li>page 3</li>
</ul>
</aside>
</main>
<footer>
@copyright
</footer>
</body>
</html>