-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrqg.html
32 lines (27 loc) · 930 Bytes
/
rqg.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
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="rqg.css">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="randqg">
<header id="title">Random Quote <br> Generator</header>
<div class="subcontainer">
<i class="fa fa-quote-left fa-3x" aria-hidden="true"></i>
<a class="twitter-share-button" href="https://twitter.com/intent/tweet"><i class="fa fa-twitter-square fa-3x" aria-hidden="true"></i></a>
</div>
<blockquote id="text">...</blockquote>
<div class="subcontainer">
<p id="author">...</p>
<i class="fa fa-quote-right" aria-hidden="true"></i>
</div>
<button type="button" id="new-quote">New Quote</button>
</div>
</div>
</body>
<script src="https://use.fontawesome.com/02b956c77d.js"></script>
<script type="text/javascript" src="rqg.js"></script>
</html>