-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (33 loc) · 979 Bytes
/
index.html
File metadata and controls
36 lines (33 loc) · 979 Bytes
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>
<head>
<title>Inspiring and Uplifting Motivational Quotes | DesignPuddle.com</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script type="text/javascript" src="quotes.js"></script>
<script type="text/javascript" src="typography.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css">
<script type="text/javascript">
// When the page is loaded
$(document).ready(function()
{
// Do our stuff!
typografy();
//window.addEventListener( 'resize', resize );
//window.addEventListener( 'click', click );
init();
});
</script>
</head>
<body>
<div class="back">
<canvas id="c1"></canvas>
<canvas id="c2"></canvas>
</div>
<div id="app">
<p class="quote"/>
<p class="name"/>
</div>
</body>
</html>
<!-- Put at the bottom to allow the dom to load -->
<script type="text/javascript" src="back.js"></script>