-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (45 loc) · 1.44 KB
/
index.html
File metadata and controls
49 lines (45 loc) · 1.44 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
48
49
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ma première page HTML</title>
<link rel="stylesheet" href="mapage.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="" target="_blank">Home</a></li>
<li><a href="">Présentation</a></li>
<li><a href="">About</a></li>
<li><a href="">Contact</a></li>
</ul>
</nav>
</header>
<main>
<!-- LES TITRES -->
<h1>Mon Titre</h1>
<h2>Mon Titre</h2>
<h3>Mon Titre</h3>
<h4>Mon Titre</h4>
<h5>Mon Titre</h5>
<h6>Mon Titre</h6>
<!-- LES TEXTES -->
<p>Mon premier paragraphe</p>
<strong>Texte important</strong>
<em>Texte emphatique</em>
<mark>Texte surligné</mark>
<blockquote>Citatation</blockquote>
<pre>Texte préformaté</pre>
<code>Code informatique</code>
<!-- LES MEDIAS ET LES LIENS -->
<a href="url"></a> <!-- Lien Hypertext -->
<img src="image.jpg" alt="image chat"> <!-- Image -->
<video src="video.mp4"></video> <!-- Video -->
<audio src="audio.mp3"></audio> <!-- Audio -->
<iframe src="url"></iframe> <!-- Carte ou Contenu Embarqué -->
</main>
</main>
</body>
</html>