-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (44 loc) · 1.54 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 lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Random Quote Machine</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div class="container-fluid bg">
<div class="container">
<div class="row">
<div class="col-sm-6 col-md-6 text-center">
<h1 class="mb-5">Random Quote Machine</h1>
<div class="row">
<div class="col-md-6 col-sm-12 mb-2">
<button id="tweetQuote" class="btn btn-info btn-block">Tweet</button>
</div>
<div class="col-md-6 col-sm-12">
<button id="getQuote" class="btn btn-info btn-block">New Quote</button>
</div>
</div>
</div>
<div class="col-sm-6 col-md-6">
<div class="card bg-light mb-3">
<div class="card-body">
<div class="card-text">
<p class="quote"></p>
<p class="author"></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/random-quote.js"></script>
</body>
</html>