-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (36 loc) · 1.42 KB
/
Copy pathindex.html
File metadata and controls
41 lines (36 loc) · 1.42 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
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<!-- Set the document title -->
<title>Random Number Generator</title>
<!-- Define character set and link to external stylesheet -->
<meta charset="utf-8">
<!-- Link page width with device width -->
<meta name="viewport" content="width=device-width, inital-scale=1.0">
<!-- Link stylesheet -->
<link rel="stylesheet" href="style.css">
<!-- Define page icon -->
<link rel="shortcut icon" href="assets/images/icon.png">
</head>
<body>
<!-- Include the JavaScript file -->
<script src="script.js"></script>
<!-- Main content container -->
<div id="main">
<!-- Title of the page -->
<p id="title">Random Number Generator</p>
<!-- Display area for generated random numbers -->
<div id="display">00000</div>
<!-- Text and input for the 'from' range -->
<p class="text" id="text0">from</p>
<input id="input0" type="number" placeholder="0">
<!-- Text and input for the 'to' range -->
<p class="text" id="text1">to</p>
<input id="input1" type="number" placeholder="99999">
<!-- Button to trigger random number generation -->
<button id="button0">Generate</button>
</div>
<!-- Link to your GitHub profile -->
<a href="https://github.com/bbatistadaniel" id="git" target="_blank">github.com/bbatistadaniel</a>
</body>
</html>