forked from emainguelag/Project_1_Metaverse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (75 loc) · 3.08 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Metavers.News, le site de référence sur les métavers</title>
<link rel="stylesheet" href="header.css">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="footer.css">
</head>
<body>
<header>
<nav>
<div id="mySidenav" class="sidenav">
<a id="closeBtn" href="#" class="close">×</a>
<ul>
<li><a href="index.html">Accueil</a></li>
<li><a href="page1_history.html">Historique</a></li>
<li><a href="page2_actors.html">Métavers</a></li>
<li><a href="page3_news.html">Actualités</a></li>
<li><a href="page4_quiz.html">Quiz</a></li>
</ul>
</div>
<a href="#" id="openBtn">
<span class="burger-icon">
<span></span>
<span></span>
<span></span>
</span>
</a>
<div id="logo">
<img id="imagelogo" src="pictures/logo-metavers-news-h50px-transparent.png" alt="" />
</div>
</nav>
</header>
<main class="hp-menu">
<div class="hp-card">
<p>Un peu d'histoire</p>
<p class="hp-card-description">Présentation, Définition, Enjeux sociétaux</p>
<a href="page1_history.html" class="hp-card-button">En savoir plus</a>
</div>
<div class="hp-card">
<p>Les Métavers</p>
<p class="hp-card-description">The Sandbox, Decentraland, Roblox, Horizon Worlds, ...</p>
<a href="page2_actors.html" class="hp-card-button">En savoir plus</a>
</div>
<div class="hp-card">
<p>Actualités</p>
<p class="hp-card-description">Les dernières informations sur les métavers</p>
<a href="page3_news.html" class="hp-card-button">En savoir plus</a>
</div>
<div class="hp-card">
<p>Quiz</p>
<p class="hp-card-description">Testez vos connaissances !</p>
<a href="page4_quiz.html" class="hp-card-button">En savoir plus</a>
</div>
</main>
<footer>
<div>
<img id="logo-site" src=".\pictures\logo-metavers-news-h50px--rose-transparent.png" alt="">
</div>
<div id="text-footer">
<p>Copyright © 2022. Metanews, Tous droits réservés.</p>
</div>
<div id="social-networks">
<a href="#"><img id="insta-img" src=".\pictures\logo-insta.png" alt="insta-logo"></a>
<a href="#"><img id="facebook-img" src=".\pictures\logo-fb.png" alt="facebook-logo"></a>
<a href="#"><img id="twitter-img" src=".\pictures\logo-twitter-bleu-blanc.png" alt="twitter-logo"></a>
</div>
</footer>
</body>
<script src="header.js"></script>
</html>