-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (64 loc) · 2.77 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mad-Lyricz</title>
<!-- Include the stylesheets you need for the Views components -->
<!-- See https://developer.spotify.com/technologies/apps/docs/preview/views/ -->
<link href="css/bootstrap.css" rel="stylesheet" media="screen">
<link rel="stylesheet" href="$views/css/image.css">
<link rel="stylesheet" href="$views/css/list.css">
<link rel="stylesheet" href="$views/css/buttons.css">
<!-- <link rel="stylesheet" href="$views/css/throbber.css"> -->
<link rel="stylesheet" href="css/style.css">
<link href="css/bootstrap-responsive.css" rel="stylesheet">
<style>
html { background: black };
</style>
<!-- If you are using the preview SDK for webplayer then uncomment the script below -->
<!--script src="http://d1hza3lyffsoht.cloudfront.net/preview-sdk/bootstrap.js"></script-->
<script src="scripts/jquery.min.js"></script>
</head>
<body>
<div class="container-fluid">
<h1></h1>
<div id="index" class = "section">
<div id="buttonContainer"></div>
<center>
<form id="form">
<h1>Let's play a little game...</h1>
<div><input type="text" name="adj1" id="adj1" placeholder="Adjective:"></div>
<div><input type="text" name="adj2" id="adj2" placeholder="Adjective:"></div>
<div><input type="text" name="noun1" id="noun1" placeholder="Noun:"></div>
<div><input type="text" name="noun2" id="noun2" placeholder="Noun:"></div>
<div><input type="text" name="noun3" id="noun3" placeholder="Noun:"></div>
<div><input type="text" name="noun4" id="noun4" placeholder="Noun:"></div>
<div><input type="text" name="verb1" id="verb1" placeholder="Verb:"></div>
<div><input type="text" name="verb2" id="verb2" placeholder="Verb:"></div>
<div>
<input type="submit" name="g" value="Submit" id="g">
</div>
</form>
</center>
<script src="scripts/lexicon.js"></script>
<script src="scripts/lexer.js"></script>
<script src="scripts/POSTagger.js"></script>
<div id="single-track-player"></div>
<div id="current-track"></div>
<div class='hero-unit' id="hero">
<center><div id="lyrics"><h3>It's like karaoke. Except it doesn't make sense.</h3></div></center>
</div>
</div>
<div id="tabs" class = "section">
<center>
<div id="player-buttons"></div>
</br>
</center>
<div id="playlistContainer"></div>
</div>
<script src="scripts/main.js"></script>
</div>
</body>
</html>