-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (77 loc) · 2.99 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
<html>
<head>
<meta charset="utf-8">
<title>Basic info</title>
<!-- Google fonts -->
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:400,300,700|Montserrat:400,700">
<!-- Fontawesome -->
<link href="http://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">
<img src="images/profilepic-squared.jpg" alt="" class="image-circle">
<h1>Jérémy ISRAEL</h1>
<h2>LeWagon student</h2>
</div>
<!-- Description of mysef -->
<div class="card">
<h2>Description</h2>
<p>1m69, brown hair, 69kg, brown eyes, parisian. Interested in coding. Speak English, French and Spanish. Like to get green rakes in fullstack challenges.</p>
</div>
<!-- Social links -->
<div class="card">
<h2>Social Networks</h2>
<ul class="inline-list">
<li><i class="fa fa-twitter" aria-hidden="true"></i></li>
<li><i class="fa fa-facebook" aria-hidden="true"></i></li>
<li><i class="fa fa-linkedin" aria-hidden="true"></i></li>
</ul>
</div>
<!-- Interests movies-->
<div class="card">
<h2>Favorite Movies</h2>
<table>
<tr>
<td><img src="images/movies-matrix.jpg" alt="" class="image-movie"></td>
<td><h3>Matrix</h3><p>The matrix is a system Neo, and this system is our enemy !</p></td>
</tr>
<tr>
<td><img src="images/movies-taken.jpg" alt="" class="image-movie"></td>
<td><h3>Taken</h3><p>First Taken movie was really good, but the next one sucked :-) An american girl gets kidnapped while traveling to Paris, but thanks god
her dad is good.</p></td>
</tr>
</table>
</div>
<!-- Interest sports -->
<div class="card">
<h2>Favorite Sports</h2>
<table>
<tr>
<td><img src="images/bouldering.jpg" alt="" class="image-sport"></td>
<td>
<h3>Bouldering</h3>
<ul id="list-small-left-padding">Bouldering is awesome because :
<li>you train but you don't get bored : competitiveness helps you !</li>
<li>it can sometime be useful</li>
<li>you socialize teaching and learning techniques</li>
</ul>
</td>
</tr>
<tr>
<td><img src="images/squash.jpg" alt="" class="image-sport"></td>
<td><h3>Squash</h3>
<p>So awesome ! You run, you fight, you compete and it requires some strategy:-)</p>
</td>
</tr>
<tr>
<td><img src="images/hiking.jpg" alt="" class="image-sport"></td>
<td><h3>Hiking</h3><p>Get's you to see good stuff and to think.</p></td>
</tr>
</table>
</div>
</div>
</body>
</html>