-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrewards.html
More file actions
71 lines (39 loc) · 1.7 KB
/
rewards.html
File metadata and controls
71 lines (39 loc) · 1.7 KB
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
<!doctype>
<html>
<head>
<script src="https://code.jquery.com/jquery.min.js">
</script>
<script>
jQuery(document).ready(function($) {
var count=0;
$("#update").click(function() {
if(count<10){
count++;}
$(".progress").css("width", count*50);
});
});
</script>
<title>Rewards</title>
<meta charset="utf-8">
<link href= "Change.css" type="text/css" rel="stylesheet" />
</head>
<body>
<div class="info-nav">
<ul class="info-links">
<li class="links"><a href="hello-world.html">Home</a></li>
<li class="links"><a href="soup-kitchens.html">Soup kitchens</a></li>
<li class="links"><a href="background-info.html">Background Info</a></li>
<li class="links"><a href="rewards.html">Rewards</a></li>
<li class="links"><a href="sponsors.html">Sponsors</a></li>
<li class="links"><a href="the-team.html">The Team</a></li>
</ul>
<div>
<div class= "progressbar">
<div class="progress">
</div>
</div>
<button id="update">Progress</button>
</div>
<iframe width="854" height="480" src="https://www.youtube.com/embed/ZPTOeqVbBrM" frameborder="0" allowfullscreen></iframe>
</body>
</html>