-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (28 loc) · 1.02 KB
/
Copy pathindex.html
File metadata and controls
36 lines (28 loc) · 1.02 KB
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
35
36
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="responsive.css">
<title>Sortear Número</title>
</head>
<body>
<img src="./assets/Dev-sorteio.png" alt="Imagem de Sorteio">
<h2>Sortear um Número</h2>
<div class="input-container">
<input placeholder="entre" class="input-min" type="number">
<input placeholder="e" class="input-max" type="number">
</div>
<button onclick="generateNumber()">Sortear</button>
<footer>
© 2025 Paulo GLebson | Direitos reservados.
</footer>
<script src="script.js"></script>
</body>
</html>