-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (71 loc) · 3.04 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
<!DOCTYPE html>
<html>
<head>
<title>My profile</title>
<meta charset="utf-8">
<!-- Fontawesome Stylesheet -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css">
<!-- Main Stylesheet File -->
<link href="style.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container">
<div class="card">
<h1>Hello, welcome to my profile! 💻</h1>
<img src="./images/pp.jpg" width="150px" class="img-circle">
<h2>Timothée Rouquette</h2>
</div>
<div class="card">
<h2>About me</h2>
<p>Currently studying Business Management at EDHEC where I specialized in Data Analytics and Artificial Intelligence, I am fascinated by IT and new technologies. A native of Paris, I have French 🇫🇷 and Argentinian 🇦🇷 dual nationality and culture.</p>
<p>I love music and sports like tennis, ski, surf and kitesurf. I play guitar, piano, bass and sing, if you like rock music you can check my project <a href="https://ampl.ink/prGVG" target="_blank">here.</a></p>
<p>🎾⛷️🎵🏄♂️🎹🎸</p>
</div>
<div class="card">
<h2>Downloads</h2>
<div class="button button-rouded">
<a href="./docs/CVTimotheeRouquette.pdf" download>Click to download my CV 📝</a>
</div>
<div class="button button-rouded">
<a href="./docs/messi.jpg" download>Click to download a picture of the best football player in history ⚽</a>
</div>
</div>
<img src="./images/add.jpg" width=230px>
<img src="./images/pills.jpg" width=230px>
<div class= "card">
<h2>Send a message</h2>
<input type="text" name="name" class="form-control" id="name" placeholder="Your message of love" data-rule="minlen:4" data-msg="Please enter at least 4 chars" />
<div class="button button-rouded">
<a href="https://i.pinimg.com/originals/bf/ce/00/bfce006e6bde259e3803aa5c3c9a06e7.jpg" download>Send ↩️</a>
</div>
<div>
<img src="https://media.tenor.com/images/73ea8c8159d336e1bafba4570f62b40f/tenor.gif" alt="this slowpoke moves" width="120" margin=10px />
</div>
</div>
<div class="card socials">
<h2>Get in touch</h2>
<ul>
<li>
<a href="https://github.com/timotheerouquette" target="_blank">
<i class="fab fa-github-square"></i>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/timoth%C3%A9e-rouquette/" target="_blank">
<i class="fab fa-linkedin icon"></i>
</a>
</li>
<li>
<a href="https://www.facebook.com/timrouquette?locale=fr_FR" target="_blank">
<i class="fab fa-facebook icon"></i>
</a>
</li>
</ul>
<p>📞 +33 (0)6 33 89 50 31</p>
<p>✉️ [email protected]</p>
</ul>
</div>
</div>
</body>
</html>