-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (37 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Kigu Quest - an adventure for the good of cute</title>
<link rel="stylesheet" href="static/styles/main.css">
<link href='http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="wrapper">
<div class="intro">
<div class="char gal">
<span></span>
<img src="static/img/sprite-files/char-f.png">
</div>
<div class="char dude">
<span></span>
<img src="static/img/sprite-files/char-m.png">
</div>
</div>
<p class="char-title">Choices are tough, but they gotta be made...</p>
<ul class="hairstyles">
<li class="light"></li>
<li class="med"></li>
<li class="dark"></li>
</ul>
<input type="text" name="character-name" value="" placeholder="A name!" class="character-name">
<div class="button" style="display:none">Okay!</div>
<h1 class="step-name"></h1>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script src="static/scripts/main.js"></script>
</body>
</html>