-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpics.html
More file actions
104 lines (95 loc) · 4.56 KB
/
pics.html
File metadata and controls
104 lines (95 loc) · 4.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Inconsolata" /> -->
<link rel="icon" type="image/x-icon" href="./assets/icons/favicon.ico" />
<title>victor</title>
<meta name="description" content="victor feuga portfolio.">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="./css/layout.css">
<link rel="stylesheet" href="./css/typography.css">
<link rel="stylesheet" href="./css/utilities.css">
<script src="https://cdn.tailwindcss.com"></script>
<script defer src="./js/script.js"></script>
</head>
<body>
<!-- NAVBAR -->
<div class="navbar">
<a class="nav-title-link" href="/">
<!-- TODO - Change the "Portfolio Title" to whatever you want displayed in the top left -->
<span class="nav-title">victor 🌙</span>
<!-- TODO - Change the email after 'mailto:' to your email address for contact -->
<a class="button" href="mailto:vicfeuga@orange.fr">
<span class="button-text">contact me 📬</span>
</a>
</a>
</div>
<!-- MAIN PAGE CONTENT -->
<div id="main-content">
<!-- IMAGE GALLERY -->
<div id="photo-gallery">
<!-- TODO - Change the 'subheader-text' to whatever you want the Gallery section header to say -->
<div class="photo-gallery-content">
<div class="photo-gallery-image-container half-width">
<img src="./assets/images/pics/jp1.jpeg" class="photo-gallery-image">
</div>
<div class="photo-gallery-image-container half-width">
<img src="./assets/images/pics/jp2.jpeg" class="photo-gallery-image">
</div>
<div class="photo-gallery-image-container">
<img src="./assets/images/pics/jp8.jpg" class="photo-gallery-image">
</div>
<div class="photo-gallery-image-container half-width">
<img src="./assets/images/pics/jp7.jpeg" class="photo-gallery-image">
</div>
<div class="photo-gallery-image-container half-width">
<img src="./assets/images/pics/jp6.JPG" class="photo-gallery-image">
</div>
<div class="photo-gallery-image-container half-width">
<img src="./assets/images/pics/it1.JPG" class="photo-gallery-image">
</div>
<div class="photo-gallery-image-container half-width">
<img src="./assets/images/pics/it2.JPG" class="photo-gallery-image">
</div>
<div class="photo-gallery-image-container half-width">
<img src="./assets/images/pics/cs2.JPG" class="photo-gallery-image">
</div>
<div class="photo-gallery-image-container half-width">
<img src="./assets/images/pics/cs3.JPG" class="photo-gallery-image">
</div>
<div class="photo-gallery-image-container">
<img src="./assets/images/pics/qb1.JPG" class="photo-gallery-image">
</div>
<div class="photo-gallery-image-container half-width">
<img src="./assets/images/pics/sg1.jpg" class="photo-gallery-image">
</div>
<div class="photo-gallery-image-container half-width">
<img src="./assets/images/pics/qb3.JPG" class="photo-gallery-image">
</div>
<div class="photo-gallery-image-container half-width">
<img src="./assets/images/pics/th1.jpg" class="photo-gallery-image">
</div>
<div class="photo-gallery-image-container half-width">
<img src="./assets/images/pics/cat1.JPG" class="photo-gallery-image">
</div>
<div class="photo-gallery-image-container">
<img src="./assets/images/pics/jp9.jpg" class="photo-gallery-image">
</div>
</div>
</div>
</div>
<!-- FOOTER -->
<div id="footer">
<a class="icon-link" target="_blank" href="https://www.linkedin.com/in/victor-feuga/">
<image src="./assets/icons/linkedin.svg" class="footer-icon"/>
</a>
<a class="icon-link" target="_blank" href="https://huggingface.co/vicfeuga">
<image src="./assets/icons/hf.png" class="footer-icon"/>
</a>
<a class="icon-link" href="mailto:vicfeuga@orange.fr">
<image src="./assets/icons/mail.svg" class="footer-icon"/>
</a>
</div>
</body>
</html>