-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (19 loc) · 742 Bytes
/
Copy pathindex.html
File metadata and controls
20 lines (19 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="ept-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Números Aleatórios</title>
<link rel="stylesheet" href="style.css">
<script src="gerandoNumerosAleatorios.js"></script>
</head>
<body>
<div id="container">
<label for="min">Número Mínimo: </label><input type="text" id="min">
<label for="max">Número Máximo: </label><input type="text" id="max">
<input type="button" value="GERAR" id="botao" onclick="gerarNumerosAleatorios()">
<div id="resultado"></div>
<input type="button" value="APAGAR" id="limpar" onclick="limparCampos()">
</div>
</body>
</html>