-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (29 loc) · 837 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
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Analisador de números</title>
<link rel="stylesheet" href="./src/style.css">
</head>
<body>
<header>
<h1></h1>
</header>
<section>
<div>
Número (entre 1 e 100):
<input type="number" name="fnum" id="fnum">
<input type="button" value="Adicionar" onclick="adicionar()">
<br><br><select name="flista" id="flista" size="6"></select>
<br><input type="button" value="Finalizar" onclick="finalizar()">
</div>
<div id="res">
</div>
</section>
<footer>
<p>© Curso em Vídeo</p>
</footer>
<script src="./src/main.js"></script>
</body>
</html>