-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (66 loc) · 2.52 KB
/
index.html
File metadata and controls
86 lines (66 loc) · 2.52 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
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html>
<head>
<!-- Loading The Bootstrap Library -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"/>
<!-- Loading Icons From Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<!-- Linking Your CSS File -->
<link rel="stylesheet" href="style.css"/>
<!-- Loading Roboto Font from Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<!-- Loading Open Sans Font from Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300&display=swap" rel="stylesheet">
</head>
<body id="body">
<div>
<!-- Quote Box -->
<div class="block text-center">
<!-- Front part of the Quote Box -->
<div class = "quote-box block__main block__front">
<!-- Quote to be Displayed Here -->
<span class = "quote">
<!-- Hyphen is Displayed -->
<i class="fas fa-2x fa-quote-left"></i>
<!-- Quote Text -->
<span class = "text">
Quote To be Displayed Here
</span>
<i class="fas fa-2x fa-quote-right"></i>
</span>
<!-- Author to be Displayed Here -->
<div class = "author">
Author to be Displayed Here
</div>
<a class = "new-quote btn btn-default" onclick="newQuote()">Next Quote</a>
</div>
<!-- Back Part of the Quote Box -->
<div class = "quote-box block__main block__back">
<!-- Quote to be Displayed Here -->
<span class = "quote">
<!-- Hyphen is Displayed -->
<i class="fas fa-2x fa-quote-left"></i>
<!-- Quote Text -->
<span class = "text">
Quote To be Displayed Here
</span>
<i class="fas fa-2x fa-quote-right"></i>
</span>
<!-- Author to be Displayed Here -->
<div class = "author">
Author to be Displayed Here
</div>
<!-- Button -->
<a class = "new-quote btn btn-default " onclick="newQuote()">Next Quote</a>
</div>
</div>
</div>
<!-- Name of the Creator -->
<p>By: Srinivas</p>
</div>
<!-- Linking Your JavaScript File -->
<script src="script.js"></script>
</body>
</html>