forked from kmonlineworks/Lucky_Winner_Picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (49 loc) · 2.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta Tags -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Site Title -->
<title>Lucky Winner Picker</title>
<!-- External Style Sheet -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=DotGothic16&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha512-SfTiTlX6kk+qitfevl/7LibUOeJWlt9rbyDn92a1DqWOw9vWG2MFoays0sgObmWazO5BQPiFucnnEAjpAB+/Sw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Styles -->
<link href="firework/jquerysctipttop.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/style.css"/>
</head>
<body>
<div class="overlay"></div>
<div class="winner">
<p>Winner</p>
</div>
<section class="wrapper">
<div class="box">
<h1>LUCKY WINNER PICKER</h1>
<h2>FOR YOUR "..."</h2>
<p class="lucky">Lucky winner will be announced randomly by an automatic lucky draw</p>
<div class="countdown">
<a href="javascript:void(0)" id="get">Get Winner</a>
<div class="count">10</div>
<div class="result"></div>
</div>
<div class="terms">
<h3>Terms and Conditions</h3>
<ul>
<li>Only eligible participant can participate in this lucky draw.</li>
<li>This is an automatic lucky draw so the winner will be picked from eligible participant list.</li>
<li>Elegible participant criteria is (...)</li>
</ul>
</div>
</div>
</section> <!-- /End of wrapper section -->
<!-- Script -->
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="firework/jquery.fireworks.js"></script>
<script type="text/javascript" src="js/winner-picker.js"></script>
<script type="text/javascript" src="list.js"></script>
</body>
</html>