-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (35 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en" class="maxHeight">
<head>
<title>Random Quote Machine</title>
<meta name="viewport" content="width=device-width, initial-scale=0.9" />
<meta name="description" content="Random quote generator" />
<link rel="stylesheet" type="text/css" href="css/main.css">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.js"> </script>
<script type="text/javascript" src="javascript/main.js"></script>
<link rel="apple-touch-icon" sizes="180x180" href="https://raw.githubusercontent.com/marcorampin/random-quote-generator/main/images/favicon/android-chrome-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://raw.githubusercontent.com/marcorampin/random-quote-generator/main/images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://raw.githubusercontent.com/marcorampin/random-quote-generator/main/images/favicon/favicon-16x16.png">
<link rel="manifest" href="/images/favicon/site.webmanifest">
</head>
<body>
<div id="quote-box" class="outer-border round-border">
<q id="text">
</q>
<div id="author">
</div>
<div id="buttons-container">
<button id="new-quote" type="button" title="New quote" class="button round-border">
NEW
</button>
<a id="tweet-quote" href="" target="_blank">
<button type="button" title="Share it on Twitter" class="button round-border">
<img id="twitter-logo" src="https://raw.githubusercontent.com/marcorampin/random-quote-generator/main/images/twitter-icon-white-transparent-6.jpg.png">
</button>
</a>
</div>
</div>
</body>
<footer>
</footer>
</html>