forked from danielnr25/IntroduccionJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DOM.html
73 lines (65 loc) · 2.67 KB
/
DOM.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Aprendiendo JavaScript Moderno - ISI</title>
<link rel="stylesheet" href="css/output.css">
</head>
<body class="bg-slate-50">
<header class="bg-gray-800">
<div class="mx-auto max-w-7xl py-16 px-4 sm:py-24 sm:px-6 lg:flex lg:justify-between lg:px-8">
<div class="max-w-2xl">
<h2 class="text-4xl font-bold tracking-tight text-white sm:text-5xl lg:text-6xl">
Introducción JavaScript Moderno
</h2>
<p class="mt-3 text-xl text-gray-400">
Introducción JavaScript Moderno
</p>
<p class="mt-3 text-2xl text-gray-400">
Vue.js 3
</p>
<nav class="mt-5 flex gap-4">
<a class="bg-green-500 hover:bg-green-300 px-5 py-3 rounded-lg font-black uppercase text-sm" href="index.html">Fundamentos JS</a>
<a class="bg-green-500 hover:bg-green-300 px-5 py-3 rounded-lg font-black uppercase text-sm" href="DOM.html">JS Intermedio - DOM</a>
</nav>
</div>
</div>
</header>
<div class="bg-green-500 py-1"></div>
<div class="mx-auto max-w-7xl p-16 bg-white shadow-lg mt-10 rounded-lg text-2xl ">
<h1 class="text-4xl font-black heading">JavaScript Intermedio - Manipulación de DOM </h1>
<div id="tecnologias" class="mt-5">
<p id="JavaScript">JavaScript</p>
<p class="vue">Vue.js</p>
<p>Node.js</p>
</div>
<nav class="navegacion my-5 flex gap-5">
<a href="#">Enlace 1</a>
<a href="#">Enlace 2</a>
<a href="#">Enlace 3</a>
<a href="#">Enlace 4</a>
</nav>
<form id="formulario" class="flex flex-col gap-5 py-10 px-5 shadow bg-gray-50 mx-auto max-w-lg mt-10">
<legend class="font-black">Iniciar Sesión</legend>
<input
type="text"
placeholder="Tu Nombre"
id="nombre"
class="p-2 rounded-lg text-sm"
>
<input
type="password"
placeholder="Tu Password"
id="password"
class="p-2 rounded-lg text-sm"
>
<input
type="submit"
value="Iniciar Sesión"
class="bg-green-500 hover:bg-green-600 text-sm uppercase p-2 font-black text-white cursor-pointer"
>
</form>
</div>
<script src="js/23.js"></script>
</body>
</html>