-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 959 Bytes
/
index.html
File metadata and controls
24 lines (24 loc) · 959 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Test your luck and logic with our engaging Number Guessing Game! Challenge yourself or friends to see who can guess the number first. Join the fun now!">
<title>Quantile | Test Your Computational Intuition</title>
<link rel="stylesheet" href=".\Src\Css\style.css">
<link rel="icon" href="Public/favicon.ico">
</head>
<body>
<div class="container">
<h1>🎯 Number Guessing Game</h1>
<div id="input">
<label for="number">Guess the Number (1-100):</label>
<input type="number" id="number" placeholder="Enter number..." />
<button id="checkBtn">Check Guess</button>
</div>
<div class="result"></div>
<div class="score"></div>
</div>
<script src=".\Src\Js\script.js"></script>
</body>
</html>