-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (55 loc) · 2.47 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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<meta charset="utf-8">
<title>Build a Random Quote Machine</title>
<meta name="description" content="Build a Random Quote Machine | Krittiya Clark">
<meta name="author" content="Krittiya Clark">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Stylesheet -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
<link rel="stylesheet" href="main.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div id="background" class="container">
<div id="quote_container" class="row text-center">
<div class="col-md-12">
<h1>Random Quote Machine</h1>
</div><!-- .col-md-12 -->
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div id="quote_slider">
<p id="quotation"></p>
<p id="author"></p>
</div><!-- #quote_slider -->
<ul class="list-inline">
<li>
<button href="#" class="btn btn-default btn-lg btn-success get-quote"><i class="fa fa-quote-left fa-fw"></i>New quote</button>
</li>
<li>
<button href="#" class="btn btn-default btn-lg btn-info share-quote"
href="#"><i class="fa fa-twitter fa-fw"></i>Tweet</button>
</li>
</ul>
</div><!-- col-md-8 col-md-offset-2 -->
</div><!-- .row -->
</div><!-- #quote_container .row -->
</div><!-- #background .container -->
<!-- Scripts -->
<script
src="https://code.jquery.com/jquery-2.2.4.min.js"
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44="
crossorigin="anonymous"></script>
<script src="main.js"></script>
</body>
</html>