forked from ChrisStudi/HTML-CSS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmapage.html
49 lines (44 loc) · 1.33 KB
/
mapage.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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="mapage.css">
<title>Ma première page HTML</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="home.html">Home</a></li>
<li>Préstation</li>
<li>About</li>
<li>Contact</li>
</ul>
</nav>
</header>
<main>
<!--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>Text surligné</mark>
<blockquote>Citation</blockquote>
<pre>Texte préformaté</pre>
<code>Code informatique</code>
<!--Medias et les liens-->
<a href="url"></a> <!--Lien Hypertext-->
<img src="image.jpg" alt="image eglise"><!--Image-->
<video src="video.mp4"></video><!--Video-->
<audio src="audio.mp3"></audio><!--Audio-->
<iframe src="image/image.jpeg"></iframe><!--Carte ou contenu embarqué-->
</main>
</body>
</html>