-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
70 lines (57 loc) · 1.57 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
69
70
<!DOCTYPE html>
<html>
<head>
<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://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity=
"sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf"
crossorigin="anonymous">
<link rel="stylesheet" href="style.css"/>
<link href=
"https://fonts.googleapis.com/css2?family=Roboto&display=swap"
rel="stylesheet">
<link href=
"https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300&display=swap"
rel="stylesheet">
</head>
<body id="body">
<div>
<div class="block text-center">
<div class = "quote-box block__main block__front">
<span class = "quote">
<i class="fas fa-2x fa-quote-left"></i>
<span class = "text">
Quote To be Displayed Here
</span>
</span>
<div class = "author">
Author to be Displayed Here
</div>
<a class = "new-quote btn btn-default"
onclick="newQuote()">New Quote</a>
</div>
<div class = "quote-box block__main block__back">
<span class = "quote">
<i class="fas fa-2x fa-quote-left"></i>
<span class = "text">
Quote To be Displayed Here
</span>
</span>
<div class = "author">
Author to be Displayed Here
</div>
<a class = "new-quote btn btn-default "
onclick="newQuote()">New Quote</a>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>