-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasic.html
More file actions
38 lines (35 loc) · 697 Bytes
/
basic.html
File metadata and controls
38 lines (35 loc) · 697 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
37
38
<html>
<head>
</head>
<body style="width:100%;height:100%;margin:0px;">
<p>
Greetings, This is a project to take html and put a canvas over it that re renders it but in a sketchy way.
</p>
<p>
Try selecting this text
</p>
<textarea>I am a text area you can resize me</textarea>
<style>
textarea{
min-width: 300px;
}
</style>
<style>
#sketch{
position: absolute;
top:0px;
left:0px;
background: white;
z-index: 10000;
pointer-events: none;
}
body *{
font-family: 'Indie Flower', cursive;
/*font-size: 20px;*/
}
</style>
<link href="https://fonts.googleapis.com/css?family=Indie+Flower" rel="stylesheet">
<script src="rough.js"></script>
<script src="sketchy.js"></script>
</body>
</html>