-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
47 lines (39 loc) · 1.88 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
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/> <!-- encodage de la page -->
<title>The Euphoria Circus</title> <!-- titre général de la page qui apparait dans l'onglet -->
<link rel="stylesheet" href="style.css"> <!-- Lien vers la feuille de CSS-->
</head>
<body>
<header>
<ul>
<li><a href="index.html">Accueil</a></li>
<li><a href="Histoire.html">Histoire</a></li>
<li><a href="Representation.html">Représentation</a></li>
<li><a href="Equipe.html">Equipe</a></li>
</ul>
</header>
<!--j'insère une "navbar", barre de navigation-->
<h1>The Euphoria Circus</h1><!-- titre de la page-->
<div id="Chapito"></div>
<footer>
<section id="footer">
<!--j'insère les logos des réseaux sociaux avec leurs liens et une image les représentant-->
<section class="social">
<a href="https://www.facebook.com/The-Euphoria-Circus-532079365489564"><img src="Images\Logo_Facebook_2.png"/></a>
<a href="https://www.youtube.com/c/EuphoriaCircus"><img src="Images\logo_Youtube_2.png"/></a>
<a href="https://twitter.com/The_Euphoria_Circus"><img src="Images\Logo_Twitter.png"/></a>
<a href="https://www.instagram.com/theeuphoriacircus/"><img src="Images\Logo_Instagram_2.png"/> </a>
</section>
<section id=Contact>
<a class="adresse" href="https://www.google.fr/maps/search/87+avenue+de+brie,+37000/@47.3878433,0.6819573,14z/data=!3m1!4b1">87 avenue de brie, 37000</a>
<a class="mail"href="mailto:[email protected]">[email protected]</a>
<p>Tel. 01 23 45 67 89</p>
</section>
</section>
<!--j'insère les moyens de contacter l'entreprise : tel, adresse, mail-->
<p class="copyright">The Euphoria Circus© 2022</p> <!-- j'insère le copyrigh de la page-->
</footer>
</body>
</html>