-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (80 loc) · 3.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="This is a page about Tim Berners-Lee, the html inventor">
<script src="https://kit.fontawesome.com/ad025ddfec.js" crossorigin="anonymous"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tim Berners-lee</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section id="presentation">
<img id="tim" src="images/tim_berners_lee.jpg" alt="tim_berners_lee">
<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 the 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>
<a id="wiki" href="https://en.wikipedia.org/wiki/Tim_Berners-Lee">See for yourself</a>
</section>
<section id="links">
<div class="link">
<i class="fab fa-facebook-f"></i>
<a href="">Facebook</a>
</div>
<div class="link">
<i class="fab fa-linkedin-in"></i>
<a href="">Linkedin</a>
</div>
<div class="link">
<i class="fab fa-twitter"></i>
<a href="">Twitter</a>
</div>
</section>
<section>
<h2>His favorite movies</h2>
<figure>
<img class="film" src="images/space_odyssey.jpg" alt="space_odyssey">
<caption>
<div class="movie
">
<h3>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>
</caption>
</figure>
<figure>
<img class="film" src="images/mister_hulot.jpg" alt="mister_hulot">
<caption>
<div class="movie
">
<h3>Monsieur Hulot</h3>
<p>
Monsieur Hulot comes to a beachside hotel for a vacation, where he accidentally (but good naturedly) causes havoc.
</p>
</div>
</caption>
</figure>
<figure>
<img class="film" src="images/alien.jpg" alt="alien">
<caption>
<div class="movie
">
<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 joined them.
</p>
</div>
</caption>
</figure>
</section>
</body>
</html>