-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (75 loc) · 2.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Zissou Profil</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,700|Ubuntu:400,700" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="card" id="profil">
<img src="Zissou_avatar.jpg" class="avatar" alt="Zissou" width=150px height="150px">
<h1>Steve Zissou</h1>
<h2>"This is an adventure."</h2>
<p>Oceanographer, and creator of the Zissou Society.</p>
<a href="#" class="btn-blue">See for yourself</a>
<ul class="list-inline">
<li class="text-center">
<a href="#">
<i class="fa fa-facebook social-profil"></i><br><p class="social-text">Facebook</p>
</a>
</li>
<li class="text-center">
<a href="#">
<i class="fa fa-linkedin social-profil"></i><br><p class="social-text">Linkedin</p>
</a>
</li>
<li class="text-center">
<a href="https://twitter.com/zissousociety" target="_blank">
<i class="fa fa-twitter social-profil"></i><br> <p class="social-text">Twitter</p>
</a>
</li>
</ul>
</div>
<div class="card">
<i class="fa fa-film" aria-hidden="true"></i>
<h2>Filmography</h2>
<table>
<tr>
<td>
<img src="jaguar-shark.gif" alt="Jaguar shark" class="img-film" width = 80px>
</td>
<td>
<h2 class="film-title">Jaguar shark</h2>
<p class="film-description">After the death of his best friend Esteban du Plantier, eaten by a creature, Zissou is determined to document the shark's destruction.</p>
</td>
</tr>
</table>
</div>
<div class="card">
<i class="fa fa-anchor" aria-hidden="true"></i>
<h2>Zissou Society Members</h2>
<ul class="list-inline">
<li class="text-center">
<img src="eleanor.jpg" alt="Eleanor" class="img-circle" width=50px><br><p class="members">Eleanor</p>
</li>
<li>
<img src="klaus.jpg" alt="Klaus" class="img-circle" width=50px><br><p class="members">Klaus</p>
</li>
<li>
<img src="dos-santos.jpg" alt="Dos Santos" class="img-circle" width=50px><br><p class="members">Dos Santos</p>
</li>
<li>
<img src="ned.jpg" alt="Ned" class="img-circle" width=50px><br><p class="members">Ned</p>
</li>
</ul>
</div>
<div class="card">
<h2>About this page</h2>
<p>This page has been coded during the FullStack program @LeWagon.<br>First HTML/CSS exercise.</p>
</div>
</div>
</body>
</html>