-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (48 loc) · 2.51 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
<!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.0" />
<link rel="icon" href="./images/logo2.png" type="image/x-icon">
<title>Random Quote Generator</title>
<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/6.5.1/css/all.min.css" crossorigin="anonymous">
<link rel="stylesheet" href="./css/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>
<h1 style="color: #00ff00;">Random Quote Generator</h1>
</div>
<div class="block text-center">
<div class="quote-box">
<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>
<div class="button-container">
<a class = "x-button btn btn-default"
onclick="talk()">Talk <i class="fa fa-volume-up" aria-hidden="true"></i></a>
<a class = "new-quote btn btn-default"
onclick="newQuote1()">New Quote</a>
<a class = "shadow-lg x-button btn btn-dark text-light" id="tweetLink" onclick="tweetWithText()" href="#" target="_blank">Tweet <i class="fa-brands fa-x-twitter" aria-hidden="true"></i></a>
</div>
</div>
</div>
<script src="./js/script.js"></script>
<div class="footer text-center">
Developed by <a class="text-decoration-none" href="https://github.com/SubramanyaKS" target="_blank">Subramanya</a> . Powered by <a class="text-decoration-none" href="https://github.com/lukePeavey/quotable" target="_blank">Ouotable</a>
</div>
</body>
</html>