-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (40 loc) · 1.6 KB
/
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
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Housie Numbers Generator</title>
<meta name="description" content="Housie, Tambola, Bingo random number generator">
<meta name="keywords" content="Housie, Bingo, Tambola, Numbers, Generator, Random">
<meta name="author" content="Aman Bhaskar">
<!-- CSS -->
<link rel="stylesheet" href="style.css">
<!-- Favicon -->
<link rel="shortcut icon" href="res/dice.svg" type="image/x-icon">
<!-- Google Font -->
<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=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/d7b86548bd.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="container">
<h1>Let's Roll <i class="fa-solid fa-dice" style="color: #ff4d4d;"></i></h1>
<div class="display">
<p id="current-number">..</p>
</div>
<div class="buttons">
<button id="generate-button">Generate Number</button>
<button id="reset-button">Reset</button>
</div>
<div class="history">
<h4>Numbers Called:</h4>
<div id="called-numbers"></div>
</div>
</div>
<div id="footer">
<p class="footlines" id="gpt">Aman Bhaskar © 2025 | created using chatGPT</p>
</div>
<script src="app.js"></script>
</body>
</html>