-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
143 lines (107 loc) · 4.41 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="fr">
<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">
<link rel="stylesheet" href="./main.css">
<link rel="icon" type="image/ico" href="/favicon.ico" />
<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=Poppins:ital,wght@0,100;0,200;0,300;1,100;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Portfolio</title>
</head>
<body>
<header>
<h1 id="header-title">Timothée JACOB</h1>
<h4 id="header-subtitle">Portfolio</h4>
<div id="header-border"></div>
</header>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
if(screen.width > 768){
$("#header-subtitle").css('width', $('#header-title').width() + 170 + 'px');
}
$(window).resize(function() {
$("header h4").css('width', $('header a').width() + 170 + 'px');
});
</script>
<div id="container-list">
<div class="container-list-item color1">
<a href="stegano.html">
<img class="item-photo" src="./img/list-stegano.jpg" alt="Stéganographie">
<div class="item-text">
<h3>Stéganographie (C)</h3>
</div>
</a>
</div>
<div class="container-list-item color3 whoAmI">
<a href="./a_propos.html">
<img class="item-photo" src="./img/list-portrait.png" alt="Système d'information">
<div class="item-text">
<h3>Qui suis-je ?</h3>
</div>
</a>
</div>
<div class="container-list-item color2">
<a href="./analyse_design.html">
<img class="item-photo" src="./img/list-si.jpg" alt="Système d'information">
<div class="item-text">
<h3>Système d'information (UML)</h3>
</div>
</a>
</div>
<div class="container-list-item color3">
<a href="sudoku.html">
<img class="item-photo" src="./img/list-sudoku.jpg" alt="Sudoku">
<div class="item-text">
<h3>Solveur de sudoku (C)</h3>
</div>
</a>
</div>
<div class="container-list-item color2">
<a href="pendu.html">
<img class="item-photo" src="./img/list-pendu.png" alt="Pendu">
<div class="item-text">
<h3>Pendu (C)</h3>
</div>
</a>
</div>
<div class="container-list-item color1">
<a href="witch.html">
<img class="item-photo" src="./img/list-witch.jpg" alt="Witch Hunt">
<div class="item-text">
<h3>Witch Hunt (Java)</h3>
</div>
</a>
</div>
<div class="container-list-item color3">
<a href="./gaia.html">
<img class="item-photo" src="./img/list-gaia.png" alt="Gaïa's Odyssey">
<div class="item-text">
<h3>Gaïa's Odyssey (Stencyl)</h3>
</div>
</a>
</div>
<div class="container-list-item color1">
<a href="photo.php">
<img class="item-photo" src="./img/list-photo.jpg" alt="Photographie">
<div class="item-text">
<h3>Photographie</h3>
</div>
</a>
</div>
</div>
<footer>
<div id="footer-text">
<p>Made by Timothée JACOB</p>
</div>
<div id="footer-links">
<a href="https://www.instagram.com/timothee_jacob/" target="_blank" class="fa fa-instagram"></a>
<a href="https://www.linkedin.com/in/timoth%C3%A9e-jacob-1b6b63192/" target="_blank" class="fa fa-linkedin"></a>
<a href="https://github.com/TimoJac/portfolio" target="_blank" class="fa fa-github"></a>
<a href="CV_Timothee_JACOB.pdf" target="_blank" class="fa fa-file-text"></a>
</div>
</footer>
</body>
</html>