-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (74 loc) · 3.39 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
<html>
<head>
<meta charset="utf-8">
<title>Basic info</title>
<!-- Google fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,300,700|Montserrat:400,700">
<!-- Fontawesome -->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<!-- Your style -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="card text-center">
<img src="imgs/sibylle_id.jpg" alt="Sibylle de Courcel" id="img-circle">
<h1 >Sibylle de Courcel</h1>
<h2>Student @Le Wagon</h2>
<p id="my_profile">After ten years being a follower in companies, I got really bored and boarded Le Wagon to get that new <strong>fullstack web developer</strong> power to become my own and only boss.</p>
<a href="#" target="_blank"></a>
</div>
<div class="card text-center padding-none">
<ul class="padding-none">
<li class="list-inline">
<a href="https://www.facebook.com/sibylle.decourcel" target="_blank">
<i class="fa fa-facebook margin-none" aria-hidden="true"></i> <br>Facebook
</a>
</li>
<li class="list-inline">
<a href="https://www.linkedin.com/in/sibylle-de-courcel-2302771" target="_blank">
<i class="fa fa-linkedin" aria-hidden="true"></i> <br>Linked In
</a>
</li>
</ul>
</div>
<div class="card">
<h2 class="text-center padding-left">My Favorite Movies</h2>
<table class="text-center">
<tbody>
<tr>
<td><img src="imgs/cercle_poetes.jpg" alt="Cercle poetes disparus" class="img-size"></td>
<td>
<h3>Le cercle des poètes disparus</h3>
<p>In a strict and rigourous academic school, an unexpected an different minded teacher brings new ways of adopting life which gives hope and energy to oppressed students.</p>
</td>
</tr>
<tr>
<td><img src="imgs/retour_futur_600_800.jpg" alt="" class="img-size"></td>
<td>
<h3>Back to the future</h3>
<p>Travelling through the past can change your future...</p>
</td>
</tr>
<tr>
<td><img src="imgs/va-vis-et-deviens.jpg" alt="" class="img-size"></td>
<td>
<h3>Va, vis et deviens</h3>
<p>In 1884, in a refugees camp in Soudan, a christian ethiopian child takes a dead juwish child's place in a plane flying to Israel in order to flee epidemic and have a chance to stay alive. He will have to lie all his life about his origins and adapt to a completly new country, life style, and unwelcoming population.</p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="card">
<h2 class="text-center">About this page</h2>
<p>This page has been coded during the FullStack program @LeWagon. That was probably the best experience of my entire life.</p>
<ul class="text-center">
<li class="list-inline"><i class="fa fa-heart"></i></li>
<li class="list-inline"><i class="fa fa-share"></i></li>
<li class="list-inline"><i class="fa fa-star"></i></li>
</ul>
</div>
</div>
</body>
</html>