-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstudent-quests.html
More file actions
96 lines (95 loc) · 3.24 KB
/
student-quests.html
File metadata and controls
96 lines (95 loc) · 3.24 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Quest store</title>
<link rel="stylesheet" href="assets/stylesheets/main.css">
<link rel="stylesheet" href="assets/stylesheets/item-cards.css">
<link rel="stylesheet" href="assets/stylesheets/quest-card.css">
</head>
<body onpageshow="progressBar()">
<header class="primary-header">
<div class="container">
<div class="sub-header">
<div class="logo">
<a href="student.html">
<img src="assets/images/logo.png" alt="LOGO">
</a>
</div>
<div class="user-status">
<div class="level">
<div>
<h2> Level:  </h2>
<h2> 5 </h2>
</div>
<div id="myProgress" >
<div id="myBar"></div>
</div>
</div>
<div class="coins">
<h2>Coins:  </h2>
<h2> 2400 </h2>
</div>
</div>
</div>
<nav class="primary-nav">
<ul>
<li><a href="student.html">My Artifacts</a></li>
<li><a href="student-item-store.html">Artifacts Store</a></li>
<li><a href="student-quests.html">Quests</a></li>
</ul>
<div id="logout">
<a href="login.html">
<img src="assets/images/logout.png" alt="Logout">
</a>
</div>
</nav>
</div>
</header>
<section class="main-info cards-display">
<div class="quest-card quest-card-basic">
<div class="quest-card-header">Exploring a dungeon
<div class="quest-card-price">
<div class="quest-card-price-box">100</div>
</div>
</div>
<div class="quest-card-image">
<img src="assets/images/quest-card/quest-exploring-a-dungeon" alt="dungeon image">
</div>
<div class="quest-card-category">Basic Quest</div>
<div class="quest-card-text-box">
<div class="quest-card-text">Finishing an SI assignment </div>
<button class="myButton">Claim</button>
</div>
</div>
<div class="quest-card quest-card-extra">
<div class="quest-card-header">Solving the magic puzzle
<div class="quest-card-price">
<div class="quest-card-price-box">100</div>
</div>
</div>
<div class="quest-card-image">
<img src="assets/images/quest-card/quest-magic-puzzle.jpg" alt="magic puzzle image">
</div>
<div class="quest-card-category">Extra Quest</div>
<div class="quest-card-text-box">
<div id="cardText" class="quest-card-text">Finishing a Teamwork week</div>
<button class="myButton">Claim</button>
</div>
</div>
</section>
<footer class="primary-footer">
<div class="logo">
<a href="student.html">
<img src="assets/images/logo.png" alt="Logo">
</a>
</div>
<div>
<small>© CodeClimbersCorp</small>
</div>
<div>
</div>
</footer>
<script src="Scripts/script.js"></script>
</body>
</html>