-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (66 loc) · 2.87 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!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">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link href="style.css" rel="stylesheet" type="text/css">
<title>Mi biblioteca </title>
</head>
<body>
<header>
<div class="titulo">Mi_biblioteca </div>
<div class="menu"><a href="recursos.html">Recursos</a></div>
</header>
<h2>Cargar nuevo recurso</h2>
<section id="agregar-recurso">
<form id="formulario">
<div class="form-contact">
<label for="titulo">Titulo</label>
<input id="titulo" type="text" placeholder="Ingrese un titulo" required>
</div>
<div class="form-contact" >
<label for="url">Enlace</label>
<input id="url" type="url" placeholder="Ingrese el enlace" required>
</div>
<div class="form-contact">
<fieldset id="tecnologia">
<legend>Tecnología</legend>
<input id="HTML" value="HTML" name="tipo" type="checkbox"><label for="HTML">HTML</label>
<input id="CSS" value="CSS" name="tipo" type="checkbox"><label for="CSS">CSS</label>
<input id="JavaScript" value="JavaScript" name="tipo" type="checkbox"><label for="JavaScript">JavaScript</label>
</fieldset>
</div>
<div class="form-contact">
<label for="type">Tipo de recurso</label>
<select id="type" required>
<option disabled selected value=" ">Seleccione uno</option>
<option>Escuela</option>
<option>Tutorial</option>
<option>Herramienta</option>
<option>Framework</option>
<option>Biblioteca</option>
<option>Documentación</option>
<option>Juego</option>
</select>
</div>
<div class="form-contact">
<label for="descripcion">Descripción breve</label>
<textarea id="descripcion" cols="40" rows="5" required></textarea>
</div>
<div class="form-contact">
<label for="terms">
<input id="terms" type="checkbox" required>
<span>No estoy enviando spam y elegí las opciones correctas</span>
</label>
</div>
<button class="boton-form" >ENVIAR</button>
</form>
</section>
<footer>
<a href="https://github.com/MelisaSG">Mi GitHub <i class="bi bi-github"></i></a>
</footer>
<script src="script.js"></script>
</body>
</html>