-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathejerciciogrilla.html
More file actions
37 lines (36 loc) · 1.48 KB
/
ejerciciogrilla.html
File metadata and controls
37 lines (36 loc) · 1.48 KB
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="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap demo</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
</head>
<body>
<div class="container">
<h1>Encuentra las diferencias</h1>
<div class="row">
<div class="col-8" align="center">
Imagenes a comparar
<div class="row">
<div class="col-6 bg-success" aling="center">
<img src="https://img.icons8.com/bubbles/140/000000/stack-of-photos.png"/>
</div>
<div class="col-6 bg-danger" aling="center">
<img src="https://img.icons8.com/clouds/140/000000/stack-of-photos.png"/>
</div>
</div>
</div>
<div class="col-4 bg-primary">
<h5>Cantidad de diferencias</h5>
<input type='radio' id='familiar'>
<label for='familiar'>5</label><br>
<input type='radio' id='familiar'>
<label for='familiar'>3</label><br>
<input type='radio' id='familiar'>
<label for='familiar'>2</label><br>
</div>
</div>
</div>
</body>
</html>