-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
124 lines (111 loc) · 3.26 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap"
rel="stylesheet"
/>
<title>Maquette To HTML</title>
</head>
<body>
<div id="main">
<!-- NavBar-->
<header>
<nav id="navbar">
<img
id="solarSystem"
src="img/solar-system-clear.png"
alt="solar system"
/>
<div id="menu">
<a href=""></a>
<a href="#">Splash Screen</a>
<a href="#">CardZone</a>
<a href="#">DownZone</a>
</div>
</nav>
</header>
<!-- Welcome -->
<div id="welcome">
<h1 id="title">Welcome into space !</h1>
<p>Do you like space ?</p>
<div id="divButton">
<button id="yesButton">Yes !</button>
<button id="noButton">No !</button>
</div>
<div id="arrow">
<img src="img/Whitedown.png" alt="arrow down" />
</div>
</div>
</div>
<!-- Genius Main -->
<main id="genius">
<h2 id="geniusTitle">Some Celibrity in astrophysical domain !</h2>
<div id="geniusCard">
<!-- einstein Card -->
<div id="einstein">
<img src="img/Einstein.jpeg" alt="Albert Einstein" />
<h4>Albert Einstein</h4>
<p>I masterize time and space ezy</p>
</div>
<!-- hawking Card -->
<div id="hawking">
<img src="img/stephen-hawking.jpg" alt="Stephen Hawking" />
<h4>Stephen Hawking</h4>
<p>Let's talk about black hole...</p>
</div>
<!-- hawking Card -->
<div id="newton">
<img src="img/Newton.jpg" alt="Isaac Newton" />
<h4>Isaac Newton</h4>
<p>Do you know what gravity is?</p>
</div>
</div>
</main>
<!-- Planete -->
<div id="planete">
<!-- Saturne -->
<div id="saturne">
<p>
Hey, i'm Saturn the sixth planet of the solar system. I'm a giant
planet and my particular sign is the ring-belt around me, so original
!
</p>
<img src="img/saturn.png" alt="saturn" />
</div>
<!-- Terre -->
<div id="terre">
<p>
Hey, i'm Earth ! Lot of little monkey's and other animals live on me.
<br />
That's monkeys are stupid, they kill themselves for no reason !
</p>
<img src="img/earth.png" alt="earth" />
</div>
<!-- Soleil -->
<div id="soleil">
<p>
Whhhaaaaat, you don't recognize me? I'm THE SUN ! Who is here for
cooking your skin when you sleeping on the beach during summer time?
</p>
<img src="img/sun.png" alt="sun" />
</div>
</div>
<!-- Footer -->
<footer id="footer">
<div id="footerTitle">
<h1>Footer</h1>
<div id="line"></div>
</div>
<div id="line2"></div>
<div id="footerLink">
<p>Copyright Alban Meurice</p>
<p>Copyright Alban Meurice</p>
<p>Copyright Alban Meurice</p>
</div>
</footer>
</body>
</html>