-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (33 loc) · 983 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Choco home</title>
<link rel="stylesheet" type="text/css" href="css/mystyles.css">
</head>
<body>
<div class="jumbotron">
<h1>A site about chocolate</h1>
<h3>We will see some of the world's chocolates!</h3>
</div>
<ol>
<li>
It arrived to Europe in 16<sup>th</sup> century
</li>
<li>
The first years, only drinking chocolate was available
</li>
<li>
It was considered luxury food!
</li>
<li>
It contains <u>caffeine</u>
</li>
<li>
<mark>Your brain needs it after hard work!</mark>
</li>
</ol>
<a href="https://en.wikipedia.org/wiki/Chocolate" target="_blank"> <img src="images/chocolatethings.jpg" alt="Chocolate Strawberries"></a>
</body>
</html>