-
Notifications
You must be signed in to change notification settings - Fork 15
/
index.html
43 lines (43 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
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Atelier Git</title>
<link href="default.css"
rel="stylesheet"
type="text/css"
title="Style par défaut">
</head>
<body>
<header>
<h1>Maîtriser Git</h1>
</header>
<nav>
<ul>
<li><a href="#">Accueil</a></li>
<li><a href="#">À propos</a></li>
</ul>
</nav>
<section>
<h2>Technique</h2>
<article>
<p>Apprentissage de git en cours...</p>
</article>
<article>
<p>Les entrailles de git...</p>
</article>
</section>
<section>
<h2>Autres sujets</h2>
<article>
<p>Quel est l'age du capitaine...</p>
</article>
<article>
<p>Internet est les chatons...</p>
</article>
</section>
<footer>
Contact:
</footer>
</body>
</html>