-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyRandomQuoteMachine.html
47 lines (43 loc) · 1.63 KB
/
myRandomQuoteMachine.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
<html>
<head>
<title>my Random Quote Machine</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/44/w3.css">
<link href='https://fonts.googleapis.com/css?family=Roboto:300,400,700' rel='stylesheet' type='text/css'>
<!--<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<link rel="stylesheet" href="https://cdnjs.cloudfare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">-->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="quote.css">
<body>
<div class="container-fluid">
<h1> Eazzy's Random Quote Machine</h1>
</div>
<div class="w3-example quote-box" style="opacity: 0.5;">
<div class="quotes">
<i class="fa fa-quote-left">
</i>
<span id="text">"My random quote goes here"
</span>
</div>
<div class="rand-author" style="opacity: 1;">
"
- "
<span id="author"></span>
</div>
<div class="buttons">
<a rel="nofollow" class="button" id="tweet" title="Post this quote on Twitter!" target="_blank" href="" style="background-color: #99b3ff;">
<i class="fa fa-twitter">
</i>
</a>
<a rel="nofollow" class="button" id="facebook" title="Post this quote on Facebook!" target="_blank" href="" style="background-color: rgb(0, 51, 204);">
<i class="fa fa-facebook-official">
</i>
</a>
<button class="button" id="new-quote" style="background-color: rgb(0, 0, 102);"> New quote</button>
</div>
</div>
<div class="footer">
<p class="copy">© EazzyLEE!!! 2017</p>
</div>
</body>