-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmentor-quests.html
More file actions
74 lines (71 loc) · 2.54 KB
/
mentor-quests.html
File metadata and controls
74 lines (71 loc) · 2.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="assets/stylesheets/main.css">
<link rel="stylesheet" href="assets/stylesheets/quest-card.css">
</head>
<body>
<header class="primary-header">
<div class="container">
<div class="sub-header">
<div class="logo">
<a href="mentor.html">
<img src="assets/images/logo.png" alt="LOGO">
</a>
</div>
</div>
<nav class="primary-nav">
<ul>
<li><a href="mentor.html">My Class</a></li>
<li><a href="mentor-students.html">Students</a></li>
<li><a href="mentor-items.html">Artifacts</a></li>
<li><a href="mentor-quests.html">Quests</a></li>
<li class="dropdown">
<a href="javascript:void(0)">Review</a>
<div class="dropdown-content">
<a href="mark-achieved-quests.html">Quests</a>
<a href="mark-bought-artifacts.html">Artifacts</a>
</div>
</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">
<div id="quest-card" class="quest-card quest-card-extra">
<div id="description" class="quest-card-header" contenteditable="true">Solving the magic puzzle
<div class="quest-card-price">
<div id="price" class="quest-card-price-box" contenteditable="true">100</div>
</div>
</div>
<div class="quest-card-image">
<img src="assets/images/quest-card/quest-magic-puzzle.jpg" alt="dungeon image">
</div>
<div class="quest-card-category">Extra Quest</div>
<div class="quest-card-text-box">
<div id="cardText" class="quest-card-text" contenteditable="true">Finishing an SI assignment </div>
<button class="myButton" onclick="sendInfoQuestCard()">Save changes</button>
</div>
</div>
</section>
<footer class="primary-footer">
<div class="logo">
<a href="mentor.html">
<img src="assets/images/logo.png" alt="Logo">
</a>
</div>
<div>
<small>© CodeClimbersCorp</small>
</div>
<div>
</div>
</footer>
</body>
</html>