-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (56 loc) · 2.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="Samuel Tandonnet" content="Samuel Tandonnet's profile">
<title>My profile</title>
<link href="https://fonts.googleapis.com/css?family=Chivo:700|Overpass:400,700&display=swap" rel="stylesheet">
<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=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Roboto:ital,wght@0,100;0,300;0,500;0,900;1,100;1,300;1,500;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div>
<h1>Hello, I am Samuel</h1>
<img src="images/profile-photo.png" alt="Samuel Tandonnet" id="img-profile">
<p>I love cinema, music, acting, and web-dev.</p>
</div>
<div>
<h2>Music</h2>
<p id="music-text">I have written 2 albums and multiple songs.</p>
<a href="https://fanlink.to/SamuelTandonnet" target="_blank" class="link-plain">Discover my music</a>
</div>
<div>
<h2>Cinema</h2>
<p>I love editing videos, watching movies, writing them...</p>
</div>
<div>
<h2>Acting</h2>
<p class="sameline" style="display:inline">Participating in
<a href="https://www.facebook.com/comediadellessec" class="link-sameline">Comedia Dell ESSEC</a>
's act.</p>
</div>
<div>
<h2>Follow me</h2>
<ul style="list-style-type:none">
<li>
<a href="https://www.linkedin.com/in/samuel-tandonnet/" target="_blank">
<img src="https://cdn-icons-png.flaticon.com/512/1384/1384014.png" alt="Linkedin" class="img-icon">
</a>
</li>
<li>
<a href="https://www.instagram.com/samuel.tandonnet/" target="_blank">
<img src="https://cdn-icons-png.flaticon.com/512/1384/1384015.png" alt="Instagram" class="img-icon">
</a>
</li>
<li>
<a href="mailto:[email protected]/" target="_blank">
<img src="https://cdn-icons-png.flaticon.com/512/181/181535.png" alt="E-Mail" class="img-icon">
</a>
</li>
</ul>
</div>
<p id="copyright">© Samuel Tandonnet, 2022</p>
</body>
</html>