-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDemo10.html
43 lines (39 loc) · 1019 Bytes
/
Demo10.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="estilos.css">
</head>
<body>
<div class="loading">
<div class="lds-hourglass"></div>
Procesando el pedido
</div>
<header>
<nav>
<ul>
<li>Inicio</li>
<li>Productos</li>
<li>Contacto</li>
</ul>
</nav>
</header>
<main>
<div>
<h1>Formulario</h1>
<div class="group">
<label>Usuario</label>
<input type="text" id="txtUsuario">
</div>
<div class="group"></div>
<label>Clave</label>
<input type="text" id="txtClave">
</div>
<button>Ingresar</button>
</div>
</main>
</body>
<script src="demo10.js"></script>
</html>