-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (67 loc) · 2.51 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Spin Wheel</title>
<link rel="stylesheet" href="./styles.css">
<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=Noto+Kufi+Arabic:[email protected]&family=Shrikhand&display=swap" rel="stylesheet">
<style>
#client-button {
position: relative;
left: 70%;
background-color: black;
color: white;
border: none;
padding: 13px;
border-radius: 10%;
cursor: pointer;
}
html[dir="rtl"] #client-button {
right: 70%;
}
</style>
</head>
<link rel="icon" href="./images/watania.webp" type="image/png">
<body>
<div class="first_page">
<div class="container">
<div class="deal-wheel">
<div class="logo-container">
<img src="./images/watania.webp" class="logo" alt="Watania Logo">
</div>
<div class="spinner"></div>
<button class="btn-spin" style="display: none;"></button>
<div class="ticker"></div>
<div class="grim-reaper" data-reaction="resting"></div>
<div class="power-indicator">
<input type="range" min="0" max="100" value="100" />
</div>
</div>
</div>
<div class="">
<button id="client-button" style="display: none;">Next Client</button>
<div class="header-logo">
<img src="./images/Group93.webp" alt="headline">
<div class="content">
<h2>September Prizes</h2>
<img src="./images/Group94.webp" alt="">
</div>
<p>welcome</p>
</div>
<div id="congratulations" style="display: none;">
<h2 id="congratulations-text"></h2>
<h2 class="user_name">Hassan Hamdy</h2>
<p>Invoice amount, 100000</p>
<div style="display: flex; align-items: center; justify-content: center;">
<img id="congratulations-image" style="width: 30%; height: 30%;" alt="Prize Image" />
</div>
<button id="print-button">Print</button>
</div>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>