-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (27 loc) · 885 Bytes
/
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Casillas de Verificación y Enlaces Separados</title>
</head>
<body>
<h1>Ejemplo de casillas de verificación</h1>
<form>
<label>
<input type="checkbox" id="opcion1">
</label>
<a href="https://lichess.org/bjAbeQoQ/black#22" target="_blank">Enlace 1</a>
<br>
<label>
<input type="checkbox" id="opcion2">
</label>
<a href="https://www.youtube.com/watch?v=W2Basvj0Cfc" target="_blank">Enlace 2</a>
<br>
<label>
<input type="checkbox" id="opcion3">
</label>
<a href="https://www.youtube.com/watch?v=n0ihYqrWwqo" target="_blank">Enlace 3</a>
</form>
</body>
</html>