This repository has been archived by the owner on Sep 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (79 loc) · 2.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>FM :: Basic info</title>
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:400,300,700|Montserrat:400,700">
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container">
<div class="card text-center">
<img src="images/fernando-morgado.jpg" alt="Fernando Morgado" class="img-circle img-profile">
<h1>Fernando Morgado</h1>
<h2>Student @Le Wagon</h2>
<p>
I was a SEO and SEM manager and I felt limited by not knowing coding. For now the plan is to reset myself and after Le Wagon... Who knows ;).
</p>
<a href="http://fernandomorgado.eu" class="btn-red" target="_blank">See for yourself</a>
</div>
<div class="card text-center">
<ul class="list-inline">
<li class="text-center">
<a href="https://www.facebook.com/talesunited" target="_blank">
<i class="fa fa-facebook"></i><br>Facebook
</a>
</li>
<li class="text-center">
<a href="https://www.linkedin.com/in/fernandomorgado" target="_blank">
<i class="fa fa-linkedin"></i><br>Linkedin
</a>
</li>
<li class="text-center">
<a href="https://twitter.com/talesunited" target="_blank">
<i class="fa fa-twitter"></i><br>Twitter
</a>
</li>
</ul>
</div>
<div class="card">
<h2>My Favorite movies</h2>
<table>
<tbody>
<tr>
<td>
<img src="images/lost-in-translation-03.jpg" alt="Lost in Translation">
</td>
<td>
<h3>Lost in Translation</h3>
<p>A faded movie star and a neglected young woman form an unlikely bond after crossing paths in Tokyo.</p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="card text-center">
<h2>About this page</h2>
This page has been coded during the <a href="http://lewagon.org/program" target="_blank">FullStack program @LeWagon</a>. That was probably the best experience of my entire life.
<ul class="list-inline">
<li class="text-center">
<a href="#">
<i class="fa fa-heart"></i>
</a>
</li>
<li class="text-center">
<a href="#">
<i class="fa fa-share"></i>
</a>
</li>
<li class="text-center">
<a href="#">
<i class="fa fa-star"></i>
</a>
</li>
</ul>
</div>
</div>
</body>
</html>