-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (33 loc) · 1.2 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
<!DOCTYPE html>
<html>
<head>
<title>Random Quote Machine</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<link href="https://fonts.googleapis.com/css?family=Lato:300,300i,400,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./src/css/style.css">
<link rel="stylesheet" type="text/css" href="./src/css/loader.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="./src/js/quotes.js"></script>
</head>
<body>
<section>
<div class="wrapper">
<h1>Random Quote Machine</h1>
<div class="card" id="quote-box">
<div class="row">
<img id="quote-icon" src="./src/img/quote-icon.png">
<p id="text"></p>
</div>
<div class="row">
<a href="#" id="tweet-quote"><img src="./src/img/twitter.png"></a>
<button id="new-quote"><img src="./src/img/refresh-2.png"></button>
<p id="author"></p>
</div>
</div>
<div class="loader"></div>
</div>
</section>
</body>
</html>