-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (59 loc) · 3.33 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<title>Tim Berners-Lee</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<section class="head">
<figure>
<img alt="Tim Berners-Lee" src="images/tim_berners_lee.jpg">
</figure>
<h1>Tim Berners-Lee</h1>
<h2>Inventor of HTML</h2>
<p>Tim Berners-Lee is the <strong>inventor</strong> of the Web. In 1989, Tim was working in a computing services section of CERN when he came up with the concept; at the time he had no idea that it would be implemented on such an <strong>enormous scale.</strong></p>
<p class="centered"><a href="https://fr.wikipedia.org/wiki/Tim_Berners-Lee" target="_blank">See for yourself</a></p>
</section>
<section class="social">
<a href="#"><i class="fa fa-facebook" aria-hidden="true"></i><br>Facebook</a>
<a href="#"><i class="fa fa-linkedin" aria-hidden="true"></i><br>Linkedin</a>
<a href="#"><i class="fa fa-twitter" aria-hidden="true"></i><br>Twitter</a>
</section>
<section class="movies">
<h2>His favorite movies</h2>
<article>
<div class="text">
<h3>2001 - Space Odyssey</h3>
<p>Humanity finds a mysterious, obviously artificial, object buried beneath the Lunar surface and, with the intelligent computer H.A.L. 9000, sets off on a quest.</p>
</div>
<figure>
<img src="images/space_odyssey.jpg" alt="2001 - Space Odyssey">
</figure>
</article>
<article>
<div class="text">
<h3>Monsieur Hulot</h3>
<p>Monsieur Hulot comes to a beachside hotel for a vacation, where he accidentally (but good-naturedly) cause havoc.</p>
</div>
<figure>
<img src="images/mister_hulot.jpg" alt="Monsieur Hulot">
</figure>
</article>
<article>
<div class="text">
<h3>Alien</h3>
<p>The commercial vessel Nostromo receives a distress call from an unexplored planet. After searching for survivors, the crew heads home only to realize that a deadly bioform has joinded them.</p>
</div>
<figure>
<img src="images/alien.jpg" alt="Alien">
</figure>
</article>
</section>
</div>
</body>
</html>