-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (47 loc) · 919 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
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<title>Examen</title>
</head>
<body>
<header>
<h1>Examen</h1>
</header>
<nav>
<ul>
<li>
<a href="http://www.realmadrid.com">Home</a>
</li>
<li>
<a href="http://www.clubamerica.com.mx/">Blog</a>
</li>
<li>
<a href="http://www.apple.com">About me</a>
</li>
</ul>
</nav>
<main>
<article>
<h2>Sobre llamas</h2>
<p>Soy un artículo</p>
</article>
<article>
<h2>Sobre tucanes</h2>
<p>Soy un artículo</p>
</article>
</main>
<footer>
<ul>
<li><img src="http://placehold.it/350x150"></li>
</ul>
<ul>
<li><img src="http://placehold.it/350x150"></li>
</ul>
<ul>
<li><img src="http://placehold.it/350x150"></li>
</ul>
</footer>
</body>
</html>