-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsketch.html
executable file
·46 lines (41 loc) · 1.71 KB
/
sketch.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
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<link href='http://fonts.googleapis.com/css?family=Baumans' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/app.css" />
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" type="text/css" href="css/style.css">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-61043394-2', 'auto');
ga('send', 'pageview');
</script>
<title>Sketch | Here | Now</title>
</head>
<body>
<div class="row">
<div class="small-6 small-centered columns">
<button class="button secondary" onclick=greySketch();>Sketch</button>
<button class="button secondary" onclick=gradSketch();>Gradient</button>
<button class="button secondary" onclick=trailSketch();>Trail</button>
<button class="button secondary" onclick=colorSketch();>Colors</button>
<div id="box"></div>
</div>
</div>
<div class="row">
<div class="small-6 small-centered columns">
<ul class="button-group sans">
<li><a href="projects.html" class="small button secondary">Go back!</a></li>
</ul>
</div>
</div>
</body>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="js/sketchpad.js" type="text/javascript"></script>
</html>