-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (31 loc) · 997 Bytes
/
Copy pathindex.html
File metadata and controls
35 lines (31 loc) · 997 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
28
29
30
31
32
33
34
35
<!---
Random Number Generator HTML File
author(Joshua Thomas)
date(13.01.2022)
version:1.0
-->
<!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">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Random Number Generator</title>
</head>
<body>
<h1 class="header-1">Random Number Generator</h1>
<h2 class="header-2">This radnom number generator creates a number from 1 - 10,000</h2>
<div class="container">
<h2 class="quote-text" id="text">0</h2>
<button class="btn" id="generate_btn"> Generate </button>
</div>
<div class="key1" id="key1_btn">
</div>
<div class="key2" id="key2_btn">
</div>
<div class="key3" id="key3_btn">
</div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>