-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (35 loc) · 1.14 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="styles.css">
<title>Apple</title>
</head>
<body style="background-color: rgb(249, 248, 250);">
<header>
<h1>Dispositivos</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li>Historia</li>
<li>Contacto</li>
</ul>
</nav>
<img src="https://upload.wikimedia.org/wikipedia/commons/c/ca/IPhone_Logo_2016.svg" alt="Logo Apple"
style="width: 100px;height: 100px;">
</header>
<hr>
<main>
<section>
<article>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Ratione eius odit labore in modi sunt velit, corrupti voluptatem, magnam a, repudiandae corporis reprehenderit nesciunt repellendus hic reiciendis cumque totam aspernatur?
</article>
</section>
</main>
<hr>
<footer>
<a href="https://www.apple.com/co/" target="_blank">Visitanos</a>
</footer>
</body>
</html>