-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (42 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Title -->
<title>Master JS</title>
<!-- scripts ⬇️ -->
<!--
<script type="text/javascript" src="js-profundidad/dom.js"></script>
<script type="text/javascript" src="js-profundidad/bom.js"></script>
<script type="text/javascript" src="js-profundidad/events.js"></script>
<script type="text/javascript" src="js-profundidad/timers.js"></script>
-->
</head>
<body>
<!-- Nuestro titulo 👍 -->
<h1 id="encabezado">Clase de javascript avanzada👽</h1>
<p>
<button id="start">start</button>
<!-- Haremos ahora un boton para parar el parpadeo que hemos creado en JS -->
<button id="stop">stop ⏱️ </button>
<button id="boton">Presioname</button>
<!-- Formulario -->
<form>
<input type="text" name="nombre" id="campo_nombre" />
</form>
</p>
<!-- Our first div 1️⃣ -->
<div id="miCaja">¡Esta es mi caja! 🗳️</div>
<hr />
<!-- Mi seccion -->
<section id="miseccion">
<h1>listado de textos de los divs</h1>
</section>
<!-- otros divs 🔢 -->
<div class="amarillo">¡Este es mi segundo div! 🗳️</div>
<div class="rojo">¡Este es mi tercer div! 🗳️</div>
<div class="rojo">¡Este es mi cuarto div! 🗳️</div>
</body>
</html>