-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 946 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="css/style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Numero Aleatorio</title>
<div class="container">
<img src="resource/logo.svg" alt="" width="500">
</div>
<script src="js/script.js"></script>
</head>
<body>
<div class="game">
<form action="">
<div class="liminput">
<label>Límite Inferior</label>
<input name="Limite Inferior" id="li" required="" type="text">
</div>
<div class="liminput">
<label>Límite Superior</label>
<input name="Limite Superior" id="ls" required="" type="text">
</div>
<div class="liminput">
<button onclick=Randomizer()>Enviar</button>
</div>
</form>
</div>
</body>
</html>