-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (42 loc) · 1.73 KB
/
index.html
File metadata and controls
45 lines (42 loc) · 1.73 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<Title>Random Quote Application</Title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css"
integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
</head>
<body>
<div class="page">
<div class="container-fluid" id="quote-box">
<div id="quote-author">
<div class="row">
<i class="col fas fa-quote-left"></i>
</div>
<div class="row">
<p class="col text-center quote" id="text">
</div>
<div class="row">
<div class="col">
<p class="text-right" id="author"></p>
</div>
</div>
</div>
<div class="row align-items-end">
<div class="col text-left">
<button type="button" class="btn btn-primary" id="new-quote">new quote</button>
</div>
<div class="col text-right">
<a id="tweet-quote"><i class="fab fa-twitter"></i></a>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>