-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (48 loc) · 2.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700|Open+Sans" rel="stylesheet">
<title>My Profile</title>
</head>
<body>
<div class="container text-center">
<div class="card large-padding">
<img class="img-circle" src="images/me.jpeg" alt="Romain Neuville">
<h1>Romain Neuville</h1>
<h2>Web Developper</h2>
<p> I love learning, socializing and coding. I also like playing games with my friends and watching movies and series.</p>
</div>
<div class="card s-g">
<ul <li class="list-inline">
<li><a href="https://www.facebook.com/romain.neuville.94"><i class="fa fa-facebook-square fa-3x" aria-hidden="true"></i></a></li>
<li><a href="https://www.linkedin.com/"><i class="fa fa-linkedin-square fa-3x" aria-hidden="true"></i></a></li>
<li><a href="https://github.com/Holist"><i class="fa fa-github-square fa-3x" aria-hidden="true"></i></a></li>
</ul>
</div>
<div class="card short-padding">
<h3>Favorites Movies & Series</h3>
<table>
<tbody>
<tr>
<td><img src="images/gotg2.jpg" alt="Guardians Of The Galaxy 2"></td>
<td>The Guardians must fight to keep their newfound family together as they unravel the mystery of Peter Quill's true parentage.</td>
</tr>
<tr>
<td><img src="images/truman.jpg" alt="The Truman Show"></td>
<td>An insurance salesman/adjuster discovers his entire life is actually a television show.</td>
</tr>
<td><img src="images/doctor_who.jpg" alt="Doctor Who"></td>
<td>The further adventures of the time travelling alien adventurer known as the Doctor and his/her companions.</td>
</tbody>
</table>
</div>
<div class="card large-padding">
<h3>About this page</h3>
<a href="https://www.lewagon.com/fr"><p>From Le wagon</p></a>
</div>
</div>
</body>
</html>