-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
44 lines (41 loc) · 1.78 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
<!DOCTYPE html>
<html>
<head>
<title>Harry Quotes</title>
<!-- loading jquery library bootstrap jquery library and custom app.js -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<script src="js/application.js"></script>
<!-- loading bootstrap css and custom css -->
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet">
<!-- custom font -->
<link href='http://fonts.googleapis.com/css?family=Press+Start+2P' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="container">
<div class="row main">
<div>
<button class="text-right pull-right" id="submit-quote">Submit a Quote</button>
<div class="submit-form dontDisplay col-xs-12">
<input type="text" id="new-quote" class="col-xs-8" name="quote" placeholder="Quote">
<input type="text" id="author" class="col-xs-4" name="author" placeholder="Author">
<div class="submit-box">
<input type="password" id="password" class="col-xs-3 col-xs-offset-8" name="password" placeholder="Password">
<button class="btn btn-primary col-xs-1" id="submit">Send</button>
</div>
</div>
</div>
<div class="col-xs-10 col-xs-offset-1 quote-box">
<p id="quote">Qlick the Astro for a random Harry Quote.</p>
</div>
<div class="col-xs-12 astro main">
<img id="astro" src="assets/astro.png">
</div>
</div>
</div>
<div>
<img id="harrynaut" class="dontDisplay" src="assets/Harrynaut.png">
</div>
</body>
</html>