blob: a4bf6778e5dadb4af5e799f7813b01f83ec355a5 (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<title>Quest</title>
<style>
.title{
background:#833;
color:white;
font-family:Consolas;
font-size:16px;
margin:auto 20px;
padding:12px;
}
.code{
background:#555;
color:white;
font-family:Consolas;
font-size:12px;
margin:auto 20px;
padding:20px;
}
.reward{
background:#383;
color:white;
font-family:Consolas;
font-size:16px;
margin:auto 20px;
padding:15px;
}
</style>
</head>
<body>
<h1>Quests</h1>
<hr>
<div class="title">Hello there!</div>
<div class="code">In this quest you must find the starting village of ASS</div>
<div class="reward">A starting weapon for the class of your choice</div>
</body>
</html>
|