-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (35 loc) · 1.29 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
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, minimum-scale=1.0" />
<meta name="author" content="Peter Krevenets" />
<title>Random Quote Generator</title>
<link href='https://fonts.googleapis.com/css?family=Josefin+Sans:400' rel='stylesheet' type='text/css'>
<script src="https://use.fonticons.com/3c624b60.js"></script>
<script src="https://code.jquery.com/jquery-2.2.4.min.js"
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44="
crossorigin="anonymous"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"
integrity="sha256-VazP97ZCwtekAsvgPBSUwPFKdrwD3unUfSGVYrahUqU="
crossorigin="anonymous"></script>
<script src="build/bundle.js"></script>
</head>
<body>
<div id="wrapper">
<div id="circle-text">
<div id="quote">
<div id="quote-text"></div>
<div id="quote-author"></div>
</div>
<div id="buttons">
<a id="tweet" target="_blank"><i class="fa fa-twitter"></i></a>
<a id="next-quote"><i class="fa fa-play"></i></a>
</div>
</div>
<div class="circle-bg">
</div>
</div>
</body>
</html>