-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (39 loc) · 1.25 KB
/
index.html
File metadata and controls
41 lines (39 loc) · 1.25 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Sommaire</title>
</head>
<body>
<h1>Sommaire</h1>
<ul>
<li>
<a href="chapitres/chapitre-1.html">Chapitre 1</a>
</li>
<li>
<a href="chapitres/chapitre-2.html">Chapitre 2</a>
</li>
<li>
<a href="chapitres/chapitre-3.html">Chapitre 3</a>
</li>
<li>
<a href="chapitres/chapitre-4.html">Chapitre 4</a>
</li>
</ul>
<p>
Aliquam erat volutpat. Morbi gravida velit nisl. Duis facilisis aliquam nisi,
ut auctor metus. Curabitur ex diam, mollis at odio sit amet, posuere hendrerit massa.
Cras mi nisl, gravida quis orci sed, consequat sagittis est.<br />
<a href="images/penguin.jpg" target="_blank">
<img src="images/penguin-mini.jpg" alt="Un bébé manchot sur la banquise" />
</a>
</p>
<video autoplay loop controls poster="images/penguin.jpg">
<source src="videos/penguin.mov" type="video/mov">
<source src="videos/penguin.mp4" type="video/mp4">
<source src="videos/penguin.ogv" type="video/ogv">
<source src="videos/penguin.webm" type="video/webm">
Votre navigateur ne permet pas de lire les vidéos HTML5.
</video>
</body>
</html>