-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
238 lines (232 loc) · 8.71 KB
/
index.html
File metadata and controls
238 lines (232 loc) · 8.71 KB
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
<!DOCTYPE html>
<html>
<head>
<title>Liberty</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<header>
<nav>
<div class="logo">Liberty</div>
<div class="menu">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#ourWorks">Our works</a></li>
<li><a href="#pricing">Pricing</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
</header>
<section id="home">
<!-- <h1>Home</h1>-->
<div class="homeLogo"></div>
<h2>Hello We are Liberty</h2>
<h2>We do Amazing things everyday</h2>
<button type="button">Contact us</button>
</section>
<section id="ourWorks">
<!-- Section Our Works-->
<h1>Our works</h1>
<p>Sed aliquam vitae lacus quis interdum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia aenean.</p>
<!-- Grille des thumbnails -->
<div class="image-grid">
<!-- 1ere ligne de thumbnails -->
<div class="image-grid-row" class="imageWorks">
<div class="thumbnail">
<img src="img/img-0.jpg">
<div class="overlay">
<p>+</p>
<div class="projectTitle">Project title</div>
</div>
</div>
<div class="thumbnail" class="imageWorks">
<img src="img/img-1.jpg">
<div class="overlay">
<p>+</p>
<div class="projectTitle">Project title</div>
</div>
</div>
<div class="thumbnail" class="imageWorks">
<img src="img/img-2.jpg">
<div class="overlay">
<p>+</p>
<div class="projectTitle">Project title</div>
</div>
</div>
<div class="thumbnail" class="imageWorks">
<img src="img/img-3.jpg">
<div class="overlay">
<p>+</p>
<div class="projectTitle">Project title</div>
</div>
</div>
</div>
<!-- 2nde ligne -->
<div class="image-grid-row">
<div class="thumbnail">
<img src="img/img-5.jpg">
<div class="overlay">
<p>+</p>
<div class="projectTitle">Project title</div>
</div>
</div>
<div class="thumbnail">
<img src="img/img-4.jpg">
<div class="overlay">
<p>+</p>
<div class="projectTitle">Project title</div>
</div>
</div>
<div class="thumbnail">
<img src="img/img-6.jpg">
<div class="overlay">
<p>+</p>
<div class="projectTitle">Project title</div>
</div>
</div>
<div class="thumbnail">
<img src="img/img-7.jpg">
<div class="overlay">
<p>+</p>
<div class="projectTitle">Project title</div>
</div>
</div>
</div>
</div>
</section>
<!-- Section pricing -->
<section id="pricing">
<h1>Pricing Table</h1>
<p>Sed aliquam vitae lacus quis interdum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia aenean.</p>
<!-- Conteneur pour les offres -->
<div class="pricing">
<!-- Une offre en particulier -->
<div class="offer">
<div class="offerHeader">
<p>Bronze</p>
<p>5$ / month</p>
</div>
<div class="offerLine">1 account</div>
<hr>
<div class="offerLine">1 project</div>
<hr>
<div class="offerLine">50K API access</div>
<hr>
<div class="offerLine">50MB storage</div>
<hr>
<div class="offerLine">Custom cloud services</div>
<hr>
<div class="offerLine">Weekly reports</div>
<hr>
<button>Sign up</button>
</div>
<!-- Fin de la première offre -->
<div class="offer">
<div class="offerHeader">
<p>Silver</p>
<p>$10 / month</p>
</div>
<div class="offerLine">1 account</div>
<hr>
<div class="offerLine">3 projects</div>
<hr>
<div class="offerLine">100K API access</div>
<hr>
<div class="offerLine">100MB storage</div>
<hr>
<div class="offerLine">Custom cloud services</div>
<hr>
<div class="offerLine">Weekly reports</div>
<hr>
<button>Sign up</button>
</div>
<div class="offer">
<div class="offerHeader">
<p>Gold</p>
<p>$20 / month</p>
</div>
<div class="offerLine">2 accounts</div>
<hr>
<div class="offerLine">5 projects</div>
<hr>
<div class="offerLine">100K API access</div>
<hr>
<div class="offerLine">200MB storage</div>
<hr>
<div class="offerLine">Custom cloud services</div>
<hr>
<div class="offerLine">Weekly reports</div>
<hr>
<button>Sign up</button>
</div>
<div class="offer">
<div class="offerHeader">
<p>Diamond</p>
<p>$35 / month</p>
</div>
<div class="offerLine">5 accounts</div>
<hr>
<div class="offerLine">20 projects</div>
<hr>
<div class="offerLine">300K API access</div>
<hr>
<div class="offerLine">500MB storage</div>
<hr>
<div class="offerLine">Custom cloud services</div>
<hr>
<div class="offerLine">Weekly reports</div>
<hr>
<button>Sign up</button>
</div>
</div>
</section>
<!-- Section contact -->
<section id="contact">
<h1>Contact</h1>
<p>Sed aliquam vitae lacus quis interdum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia aenean.</p>
<form method="post" action="#">
<div class="flexForm leftForm">
<textarea placeholder="Message"></textarea>
</div>
<div class="flexForm rightForm">
<input type="text" name="name" placeholder="Name">
<input type="text" name="email" placeholder="Email">
<!-- -->
<div class="submitLine">
<select>
<option>Direction</option>
<option>IT</option>
<option>Accounting</option>
<option>HR</option>
</select>
<button type="submit" name="submit">Submit</button>
</div>
</div>
</form>
</section>
<footer>
<div class="decoButton">
<!-- Vu que le bouton top page est déporté, je remplace la flèche par le logo liberty -->
<img src="img/logo.png">
</div>
<p>Copyright © 2014 Company.Inc All rights reserved</p>
<p>Theme Liberty 1.0.0 Designed by YoArts. </p>
<p>Reproduced by JJK as a HTML/CSS/JS exercice (2019).</p>
<div class="socialMedia">
<div class="socialMediaIcon fb">f</div>
<div class="socialMediaIcon tw">t</div>
<div class="socialMediaIcon gp">g</div>
</div>
</footer>
<button id="goToTopBtn" title="Go back to the top" onclick="backToTop()">↑</button>
<script src="js/topButton.js"></script>
</body>
</html>
<!--
container thumbnail
image imageWorks
button ourWorksDetails
-->