-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathingreso.html
37 lines (25 loc) · 1.09 KB
/
ingreso.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Ingresar Palabra</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1><img src="imgs/logo.png"></h1>
</header>
<main>
<div>
<h2 class="titulo-principal">Ingrese una palabra</h2>
<input type="palabra" class="ingreso-palabra" value="">
<p class="regla"><img src="imgs/exclamacion.webp"> Máx. de 8 letras</p>
</div>
<a href="principal.html"><button type="button" class="guardar" onclick>Guardar y empezar</button></a>
<a href="principal.html"><button type="button" class="cancelar" onclick>Cancelar</button></a>
</main>
<script type="text/javascript" src="app.js"></script>
</body>
<footer>
<p id="autor">♣ Desafío #2 - Desarrollado por Jennifer Arce - 2022 ♣</p>
</footer>