-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (34 loc) · 1.32 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Random Quote Machine</title>
<link href="./css/materialize.min.css" rel="stylesheet">
<link href="./css/style.css" rel="stylesheet">
<link rel="stylesheet" href="//cdn.materialdesignicons.com/1.9.32/css/materialdesignicons.min.css">
</head>
<body>
<div class="row">
<div class="col s12 m6">
<div class="card blue-grey darken-1">
<div class="card-content white-text">
<span class="card-title">Random Quote</span>
<p id="quoteText"></p>
<br>
<p id="quoteAuthor"></p>
</div>
<div class="card-action">
<button class="btn waves-effect waves-light" type='button' id='twitter'>
<i class="mdi mdi-twitter-circle"></i> Twit it!</button>
<button class="btn waves-effect waves-light" type='button' id='get-another-quote-button'>Another Quote</button>
</div>
</div>
</div>
</div>
<script src="./js/jquery-3.2.1.min.js"></script>
<script src="./js/script.js"></script>
</body>
</html>