-
Notifications
You must be signed in to change notification settings - Fork 66
/
index.html
80 lines (64 loc) · 1.9 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Reset en CSS</title>
<!-- 👉 Reset de Meyers -->
<!-- <link rel="stylesheet" crossorigin="anonymous" referrerpolicy="no-referrer" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" integrity="sha512-NmLkDIU1C/C88wi324HBc+S2kLhi08PN5GDeUVVVC/BVt/9Izdsc9SVeVfA1UZbY3sHUlDSyRXhCzHfr6hmPPw==" /> -->
<!-- 👉 Normalize CSS -->
<!-- <link rel="stylesheet" crossorigin="anonymous" referrerpolicy="no-referrer" href="https://cdnjs.cloudflare.com/ajax/libs/modern-normalize/1.1.0/modern-normalize.min.css" integrity="sha512-wpPYUAdjBVSE4KJnH1VR1HeZfpl1ub8YT/NKx4PuQ5NmX2tKuGu6U/JRp5y+Y8XG2tV+wKQpNHVUX03MfMFn9Q==" /> -->
<!-- 👉 Reset Pro -->
<!-- <link rel="stylesheet" href="css/app.css"> -->
</head>
<body>
<h1>Texto</h1>
<h2>Texto</h2>
<h3>Texto</h3>
<h4>Texto</h4>
<h5>Texto</h5>
<h6>Texto</h6>
<main>Texto</main>
<section>Texto</section>
<article>Texto</article>
<nav>Texto</nav>
<a href="#">Texto</a>
<p>Texto <strong>Texto</strong></p>
<ul>
<li>Texto</li>
</ul>
<ol>
<li>Texto</li>
</ol>
<dl>
<dt>Texto</dt>
<dd>Texto</dd>
</dl>
<button>Texto</button>
<input placeholder="Texto" type="text">
<input placeholder="Texto" type="password">
<input placeholder="Texto" type="checkbox">
<input placeholder="Texto" type="submit">
<textarea>Texto</textarea>
<select>
<option>Texto</option>
</select>
<table>
<tbody>
<tr>
<td>Texto</td>
<td>Texto</td>
</tr>
<tr>
<td>Texto</td>
<td>Texto</td>
</tr>
</tbody>
</table>
<img src="assets/media.jpg" alt="Imagen">
<img src="assets/edugolas.jpg" alt="Imagen">
<video controls muted src="assets/video.mp4"></video>
<video controls muted src="assets/video.mp4"></video>
</body>
</html>