-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
291 lines (279 loc) · 12.9 KB
/
portfolio.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
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
<!doctype html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Portfolio | Robbie Lens</title>
<!-- Theme couleur -->
<meta name="theme-color" content="#a5b4fc" />
<meta name="msapplication-TileColor" content="#a5b4fc" />
<!-- Favicon -->
<link rel="shortcut icon" type="image/x-icon" href="assets/img/logo.png">
<link rel="apple-touch-icon" type="image/png" sizes="192x192" href="assets/img/logo.png">
<!-- link css -->
<link href="dist/output.css" rel="stylesheet" />
<!-- import icone bootstrap -->
<link rel="stylesheet" href="assets/import/icones/bootstrap-icons.css">
<!-- Police d'ecriture -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Manrope:wght@200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
</head>
<body>
<!-- header -->
<header class="py-9">
<div class="container mx-auto lg:relative flex flex-col lg:flex-row lg:justify-between lg:items-center">
<!-- logo -->
<div class="flex justify-center lg:justify-normal">
<a href="index.html">
<img src="./assets/img/logo.png" alt="logo" width="90px" />
</a>
</div>
<div class="flex flex-col gap-y-4 lg:flex-row lg:gap-x-10 lg:gap-y-0">
<!-- mobile nav -->
<nav
class="mnav bg-white fixed w-[300px] top-0 h-screen -left-[300px] shadow-2xl lg:hidden transition-all duration-300 z-20">
<!-- nav trigger btn phone -->
<div
class="mnav__close-btn bg-primary w-16 h-16 relative -right-full top-8 flex justify-center items-center rounded-tr-lg rounded-br-lg cursor-pointer transition-all pr-2">
<i class="bi bi-filter-right mnav__close-btn-icon text-white text-4xl"></i>
</div>
<!-- logo, list nav, form -->
<div class="px-12 flex flex-col gap-y-12 h-full">
<!-- logo -->
<a href="index.html">
<img src="./assets/img/logo.png" alt="logo" />
</a>
<!-- List -->
<ul class="flex flex-col gap-x-5 gap-y-3">
<li>
<a href="index.html"
class="text-black hover:text-secondary text-2xl mb-6 capitalize transition-all duration-300">Accueil</a>
</li>
<li>
<a href="apropos.html"
class="text-black hover:text-secondary text-2xl mb-6 capitalize transition-all duration-300">à
propos</a>
</li>
<li>
<a href="tarif.html"
class="text-black hover:text-secondary text-2xl mb-6 capitalize transition-all duration-300">Tarifs</a>
</li>
<li>
<a href="portfolio.html"
class="text-black hover:text-secondary text-2xl mb-6 capitalize transition-all duration-300">Portfolio</a>
</li>
</ul>
</div>
</nav>
<!-- desktop nav -->
<nav class="lg:flex lg:items-center lg:justify-between hidden">
<!-- List -->
<ul class="flex gap-x-7">
<li>
<a href="index.html"
class="pr-9 text-black text-xl hover:text-secondary capitalize transition-all duration-300">Accueil</a>
</li>
<li>
<a href="apropos.html"
class="pr-9 text-black text-xl hover:text-secondary capitalize transition-all duration-300">à
propos</a>
</li>
<li>
<a href="tarif.html"
class="pr-9 text-black text-xl hover:text-secondary capitalize transition-all duration-300">Tarifs</a>
</li>
<li>
<a href="portfolio.html"
class="pr-9 text-black text-xl hover:text-secondary capitalize transition-all duration-300">Portfolio</a>
</li>
</ul>
</nav>
</div>
</div>
</header>
<!-- hero -->
<section class="hero bg-primary py-[100px] xl:pt-12 xl:pb-12 overflow-hidden">
<div class="container mx-auto pb-12 pt-12 max-md:pb-10 max-md:pt-10">
<!-- text & img -->
<div class="flex items-center justify-start mx-auto px-12 h-full max-lg:justify-center max-lg:px-0">
<!-- title -->
<h1 class="titre-hero h1 text-secondary font-light text-left max-lg:text-center max-lg:text-[50px]">Portfolio
</h1>
</div>
</div>
</section>
<!-- hero end -->
<!-- Paysages -->
<section class="section projet">
<div class="container mx-auto">
<!-- title -->
<p class="titre-card mb-[70px] mt-[70px] px-16 text-4xl text-center xl:text-left">
Paysages
</p>
</div>
<!-- flex container -->
<div class="container flex items-center justify-center flex-wrap gap-y-4 mx-auto mt-8">
<!-- Img 1 -->
<div
class="card w-[280px] h-[300px] max-md:h-[500px] max-md:flex-grow max-md:mx-6 mx-3 bg-element1 bg-no-repeat bg-cover bg-center relative">
<div
class="bImg flex items-center justify-center w-full h-full bg-black opacity-0 absolute inset-0 z-10 hover:opacity-[0.8] transition-all duration-500">
<span class="text-white">
<a href="assets/img/accueil/element-1.png" target="_blank" class="cursor-pointer">Voir l'image</a>
</span>
</div>
</div>
<!-- Img 2 -->
<div
class="card w-[280px] h-[300px] max-md:h-[500px] max-md:flex-grow max-md:mx-6 mx-3 bg-element2 bg-no-repeat bg-cover bg-center relative">
<div
class="bImg flex items-center justify-center w-full h-full bg-black opacity-0 absolute inset-0 z-10 hover:opacity-[0.8] transition-all duration-500">
<span class="text-white">
<a href="assets/img/accueil/element-2.png" target="_blank" class="cursor-pointer">Voir l'image</a>
</span>
</div>
</div>
<!-- Img 3 -->
<div
class="card w-[280px] h-[300px] max-md:h-[500px] max-md:flex-grow max-md:mx-6 mx-3 bg-element3 bg-no-repeat bg-cover bg-center relative">
<div
class="bImg flex items-center justify-center w-full h-full bg-black opacity-0 absolute inset-0 z-10 hover:opacity-[0.8] transition-all duration-500">
<span class="text-white">
<a href="assets/img/accueil/element-3.png" target="_blank" class="cursor-pointer">Voir l'image</a>
</span>
</div>
</div>
<!-- Img 4 -->
<div
class="card w-[280px] h-[300px] max-md:h-[500px] max-md:flex-grow max-md:mx-6 mx-3 bg-element4 bg-no-repeat bg-cover bg-center relative">
<div
class="bImg flex items-center justify-center w-full h-full bg-black opacity-0 absolute inset-0 z-10 hover:opacity-[0.8] transition-all duration-500">
<span class="text-white">
<a href="assets/img/accueil/element-4.png" target="_blank" class="cursor-pointer">Voir l'image</a>
</span>
</div>
</div>
<!-- Img 5 -->
<div
class="card w-[280px] h-[300px] max-md:h-[500px] max-md:flex-grow max-md:mx-6 mx-3 bg-element5 bg-no-repeat bg-cover bg-center relative">
<div
class="bImg flex items-center justify-center w-full h-full bg-black opacity-0 absolute inset-0 z-10 hover:opacity-[0.8] transition-all duration-500">
<span class="text-white">
<a href="assets/img/accueil/element-5.png" target="_blank" class="cursor-pointer">Voir l'image</a>
</span>
</div>
</div>
<!-- Img 6 -->
<div
class="card w-[280px] h-[300px] max-md:h-[500px] max-md:flex-grow max-md:mx-6 mx-3 bg-element6 bg-no-repeat bg-cover bg-center relative">
<div
class="bImg flex items-center justify-center w-full h-full bg-black opacity-0 absolute inset-0 z-10 hover:opacity-[0.8] transition-all duration-500">
<span class="text-white">
<a href="assets/img/accueil/element-6.png" target="_blank" class="cursor-pointer">Voir l'image</a>
</span>
</div>
</div>
</div>
</section>
<!-- Projet end -->
<!-- Portrait -->
<section class="section projet mb-28">
<div class="container mx-auto">
<!-- title -->
<p class="titre-card mb-[70px] mt-[70px] px-16 text-4xl text-center xl:text-left">
Portrait
</p>
</div>
<!-- flex container -->
<div class="container flex items-center justify-center flex-wrap gap-y-4 mx-auto mt-8">
<!-- Img 1 -->
<div
class="card w-[280px] h-[300px] max-md:h-[500px] max-md:flex-grow max-md:mx-6 mx-3 bg-portrait4 bg-no-repeat bg-cover bg-center relative">
<div
class="bImg flex items-center justify-center w-full h-full bg-black opacity-0 absolute inset-0 z-10 hover:opacity-[0.8] transition-all duration-500">
<span class="text-white">
<a href="assets/img/portfolio/portrait4.jpg" target="_blank" class="cursor-pointer">Voir l'image</a>
</span>
</div>
</div>
<!-- Img 2 -->
<div
class="card w-[280px] h-[300px] max-md:h-[500px] max-md:flex-grow max-md:mx-6 mx-3 bg-portrait1 bg-no-repeat bg-cover bg-center relative">
<div
class="bImg flex items-center justify-center w-full h-full bg-black opacity-0 absolute inset-0 z-10 hover:opacity-[0.8] transition-all duration-500">
<span class="text-white">
<a href="assets/img/portfolio/portrait1.jpg" target="_blank" class="cursor-pointer">Voir l'image</a>
</span>
</div>
</div>
<!-- Img 3 -->
<div
class="card w-[280px] h-[300px] max-md:h-[500px] max-md:flex-grow max-md:mx-6 mx-3 bg-portrait6 bg-no-repeat bg-cover bg-center relative">
<div
class="bImg flex items-center justify-center w-full h-full bg-black opacity-0 absolute inset-0 z-10 hover:opacity-[0.8] transition-all duration-500">
<span class="text-white">
<a href="assets/img/portfolio/portrait6.jpg" target="_blank" class="cursor-pointer">Voir l'image</a>
</span>
</div>
</div>
<!-- Img 4 -->
<div
class="card w-[280px] h-[300px] max-md:h-[500px] max-md:flex-grow max-md:mx-6 mx-3 bg-portrait2 bg-no-repeat bg-cover bg-center relative">
<div
class="bImg flex items-center justify-center w-full h-full bg-black opacity-0 absolute inset-0 z-10 hover:opacity-[0.8] transition-all duration-500">
<span class="text-white">
<a href="assets/img/portfolio/portrait2.jpg" target="_blank" class="cursor-pointer">Voir l'image</a>
</span>
</div>
</div>
<!-- Img 5 -->
<div
class="card w-[280px] h-[300px] max-md:h-[500px] max-md:flex-grow max-md:mx-6 mx-3 bg-portrait3 bg-no-repeat bg-cover bg-center relative">
<div
class="bImg flex items-center justify-center w-full h-full bg-black opacity-0 absolute inset-0 z-10 hover:opacity-[0.8] transition-all duration-500">
<span class="text-white">
<a href="assets/img/portfolio/portrait3.jpg" target="_blank" class="cursor-pointer">Voir l'image</a>
</span>
</div>
</div>
<!-- Img 6 -->
<div
class="card w-[280px] h-[300px] max-md:h-[500px] max-md:flex-grow max-md:mx-6 mx-3 bg-portrait5 bg-no-repeat bg-cover bg-center relative">
<div
class="bImg flex items-center justify-center w-full h-full bg-black opacity-0 absolute inset-0 z-10 hover:opacity-[0.8] transition-all duration-500">
<span class="text-white">
<a href="assets/img/portfolio/portrait5.jpg" target="_blank" class="cursor-pointer">Voir l'image</a>
</span>
</div>
</div>
</div>
</section>
<!-- Projet end -->
<!-- footer -->
<footer class="bg-white flex items-center py-10 max-md:py-8">
<div class="container mx-auto flex items-center justify-between px-3 max-md:flex-col">
<div class="max-md:mb-8">
<a href="portfolio.html">
<img src="assets/img/logo.png" alt="logo">
</a>
</div>
<div class="max-md:mb-2 max-md:flex max-md:flex-col max-md:gap-y-4">
<a href="#" class="hover:text-accent transition-all duration-100">
<i class="bi bi-instagram ml-8 text-3xl max-md:ml-0 max-md:text-center max-md:p-4"></i>
</a>
<a href="#" class="hover:text-accent transition-all duration-100">
<i class="bi bi-twitter ml-8 text-3xl max-md:ml-0 max-md:text-center max-md:p-4"></i>
</a>
</div>
</div>
</footer>
<!-- footer end -->
<!-- SCRIPTS -->
<!-- Scroll reveal librairie js pour apparition au scroll-->
<script src="assets/js/scrollreveal.min.js"></script>
<!-- Principale -->
<script src="assets/js/index.js"></script>
</body>
</html>
<!-- 925DEV -->