-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathestructura.html
More file actions
36 lines (33 loc) · 1.1 KB
/
estructura.html
File metadata and controls
36 lines (33 loc) · 1.1 KB
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">
<meta name="descripcion" content="Una genial descripción de mi página">
<title> Titulo de la pagina web </title>
<link rel="stylesheet" href="./02estructura/styles.css" />
<link rel="shortcut icon" href="./02estructura/favicon.png">
</head>
<body>
<h1>Título del contenido</h1>
<h2>Título de mi página web</h2>
<h3>Título de mi página web</h3>
<h4>Título de mi página web</h4>
<h5>Título de mi página web</h5>
<h6>Título de mi página web</h6>
<header></header>
<nav></nav>
<article>
<h1>Título</h1>
<section>
<h2>Título2</h2>
</section>
<section>
<h2>Título2</h2>
</section>
</article>
<aside> Promo2</aside>
<footer>Version1</footer>
<script src="./02estructura/scripts.js"></script>
</body>
</html>