-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheasy_mode.html
More file actions
34 lines (31 loc) · 946 Bytes
/
easy_mode.html
File metadata and controls
34 lines (31 loc) · 946 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Easy mode</title>
<meta name="robots" content="index, follow">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body data-min-range="0" data-max-range="9">
<input type="checkbox" id="cuadro1" value="suma">
<label for="cuadro1">Plus</label>
<input type="checkbox" id="cuadro2" value="resta">
<label for="cuadro2">Less</label>
<input type="checkbox" id="cuadro3" value="multi">
<label for="cuadro3">For</label>
<input type="checkbox" id="cuadro4" value="divi">
<label for="cuadro4">Among</label>
<div id="op"></div>
<button id="tal">Let's Go!</button>
<div id="resultado"></div>
<footer>
<a href="#">About</a>
<a href="#">Contact</a>
<br>
<br>
<cite>@Atom_MoYi21-Todos los Derechos Reservados</cite>
</footer>
<hr>
<script type="text/javascript" src="main.js"></script>
</body>