-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQuoteMachine.html
37 lines (30 loc) · 1.53 KB
/
QuoteMachine.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
<head>
<title>Random Quote Machine </title>
<link href="https://fonts.googleapis.com/css?family=Dosis|Abel" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- CSS -->
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.6/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
<!-- JavaScript -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="animation.js"></script>
</head>
<body>
<div id="background">
<h2 id="title" class="text-center"><b><i>freeCodeCamp Project: Random Quote Machine</i></b></h2>
<div class="container">
<p id="quote" class="text-center">"Try not to become a man of success, but rather try to become a man of value." </p>
<p id="author" class="text-right">- Albert Einstein</p>
<div class="row">
<div class="col">
<button id="tweet" type="button" class="btn btn-info"><i class="fa fa-twitter" aria-hidden="true"></i> </button>
</div>
<div class="col">
<button id="newQuote" type="button" class="btn btn-info">New Quote</button>
</div>
</div>
<p id="sign" class="text-center">Made by <a id="link" href="https://codepen.io/mfaria724/#">Manuel Faria</a></p>
</div>
</div>
</body>