-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (58 loc) · 2.1 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="style.css" />
<title>Gues the Number Game</title>
</head>
<body>
<header class="container text-center mt-2 p-4">
<h1>Guess The Number 1-100</h1>
<div class="container justify-content-center align-items-center m-2">
<div class="input-group">
<input type="number" class="form-control tahmin-input text-center" id="input"/>
<button class="btn btn-warning kontrol-btn">Check</button>
</div>
</div>
</header>
<main class="container text-center p-3">
<!-- <p>Select a number between 1-100</p> -->
<section class="mt-1">
<img class="sapka w-25" src="pngwing.com (1).png" alt="sapka" />
<div
class="container d-flex justify-content-center align-items-center p-1"
>
<p class="sakli-yazi fs-3">PC-Generated-Number:</p>
<p class="sakli-number fs-2 text-danger-emphasis">?</p>
</div>
</section>
<section class="mt-4">
<p class="msg">..........</p>
<p class="hak-label fs-3">
<i id="shake-icon" class="fa-regular fa-bell fa-1x"></i> Predictions remained:
<span class="hak">5</span>
</p>
<button
class="btn btn-outline-dark tekrar-btn p-2 mt-4 ms-auto w-25 col-md-3 p-2 check-btn"
>
Play Again
</button>
</section>
</main>
<script src="game.js"></script>
</body>
</html>