-
Notifications
You must be signed in to change notification settings - Fork 17
/
index.html
39 lines (36 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Mon premier site web" />
<meta name="keywords" content="ce, meta, ne, marche, plus" />
<meta name="author" content="Beyoncé" />
<title>PWFE 1</title>
</head>
<body>
<h1>Mon premier site web</h1>
<!-- Identification de l'utilisateur -->
<div>
<p>Le nom</p>
<div>
<h2>Première façon d'écrire un lien</h2>
<a href="http://127.0.0.1:5500/contact.html">Contactez-nous !</a>
</div>
<div>
<h2>Deuxième façon d'écrire un lien</h2>
<a href="contact.html">Contactez-nous !</a> <br />
<a href="pages/a-propos.html">À propos de nous !</a>
</div>
<div>
<a href="https://www.instagram.com/beyonce" target="_blank"
>Join my bee-hive !</a
>
</div>
<div>Appelez-nous ! <a href="tel:+15145145145">+15145145145</a></div>
<div>
Écrivez-nous : <a href="mailto:test@test.test">test@test.test</a>
</div>
</div>
</body>
</html>