-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
35 lines (29 loc) · 1.07 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
<!DOCTYPE html>
<html>
<head>
<title>Calina’s Mad Lips</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<link href="//fonts.googleapis.com/css?family=Open+Sans:400,700" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="assets/reset.css" type="text/css">
<link rel="stylesheet" href="assets/styles.css" type="text/css">
</head>
<body>
<form action="" id="mad-libs">
<label for="word">
Enter <span class="prompt"></span>
</label>
<input type="text" name="word" id="word" autofocus="autofocus" autocomplete="off" tabindex="1" />
</form>
<article id="story">
<div class="content"></div>
<footer>
<a href="#" class="start-over">Good job. Now go do it again!</a>
</footer>
</article>
<script src="assets/stories.js"></script>
<script src="assets/madlibs.js"></script>
</body>
</html>