-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (24 loc) · 734 Bytes
/
Copy pathindex.html
File metadata and controls
27 lines (24 loc) · 734 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Trabalho Prático 01</title>
<link rel="stylesheet" href="./css/reset.css" />
<link rel="stylesheet" href="./css/materialize.css" />
</head>
<body>
<h1>Números</h1>
<h5>Escolha um número entre 0 e 999:</h5>
<form>
<input id="rangeNumber" type="range" />
</form>
<h6>Formato numérico:</h6>
<div id="numericNumber"></div>
<hr />
<h6>Número por extenso:</h6>
<div id="writtenNumber"></div>
<script src="./js/script.js" defer></script>
</body>
</html>