-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (35 loc) · 972 Bytes
/
index.html
File metadata and controls
38 lines (35 loc) · 972 Bytes
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8"/>
<meta name="description" content="Esta pagina te mostrara fotos de gatos"/>
<meta name="robots" content="index,follow"/>
<title>Es mi pagina</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="./css/style.css"/>
</head>
<body>
<header>
<nav></nav>
</header>
<main>
<section>
<article>
</article>
</section>
<ul>
<li>Soy una manzana</li>
</ul>
<ol>
<li>Soy una manzana</li>
</ol>
</main>
<footer>
</footer>
<p>Soy un texto</p>
<h1>Soy un titulo</h1>
<h2>Soy otro titulo</h2>
<h3>Soy otro titulo mas</h3>
<a href="#">Soy un link</a>
</body>
</html>