-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
47 lines (41 loc) · 1.26 KB
/
Copy pathmain.html
File metadata and controls
47 lines (41 loc) · 1.26 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
42
43
44
45
46
47
<!DOCTYPE html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Main page</title>
</head>
<body>
<header>
<nav>
<form>
<button><a href="#">Home</a></button>
<button><a href="#">Abour</a></button>
<button><a href="#">Work</a></button>
<button><a href="#">Resume</a></button>
<button><a href="#">Contact</a></button>
</form>
</nav>
</header>
<br>
<video width="320" height="240" controls>
<source src="Classical-music.mp4" type="video/mp4">
</video>
</br>
<ol>
<li> Compositeur : Ludwig Van Beethoven (1770-1827)</li>
<li> Oeuvre : Sonate pour piano no 23 ("Appassionata")</li>
<li> Annee de composition : 1804-1805</li>
<li> Interprete : Maurizio Pollini (1942-2024)</li>
</ol>
<footer>
<p>© 2024 MonSiteWeb. Tous droits réservés.</p>
<p>
<a href="#">Mentions légales</a> |
<a href="#">Politique de confidentialité</a> |
<a href="#">Contact</a>
</p>
</footer>
</body>
</html>