-
Notifications
You must be signed in to change notification settings - Fork 0
/
agregar.html
26 lines (26 loc) · 1.04 KB
/
agregar.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
<!DOCTYPE html>
<html lang="es">
<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">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="agregar.css">
<title>Agregar</title>
</head>
<body>
<div class="logo">
<img class="img" src="Imagenes/pngegg.png" alt="logo">
</div>
<div id="ingresar">
<input type="text" id="input-palabra" placeholder="Ingresar nueva palabra">
<p><img src="Imagenes/bi_exclamation-circle-fill.png" alt="exclamacion"> Máx. 8 letras</p>
</div>
<div class="botones">
<input type="button" class="guardar" value="Guardar" onclick="addWord();">
<button type="button" class="salir"><a href="index.html">Salir</a></button>
</div>
<script src="agregar.js"></script>
<script src="palabras.js"></script>
</body>
</html>