-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (60 loc) · 2.75 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Javier Unknos">
<meta name="description" content="JAVIER UNKNOS is a multidisciplinary designer currently based between Madrid & Valencia specialy focused on type design and visual comunication for wide range of international clients in diverse fields such cultural, art, fashion, music and audiovisual industries." />
<meta name="keywords" content="Javier Unknos, Javier, Unknos, Design, Graphic Design, Type Design, Typography">
<title>©2024 JAVIER UNKNOS</title>
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="favicon/favicon.ico">
<link rel="stylesheet" href="css/style.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-153095743-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-153095743-1');
</script>
<script type="text/javascript" src="js/paper-full.js"></script>
<script src="js/paper-full.min.js"></script>
<script type="text/paperscript" canvas="canvas">
tool.minDistance = 2;
var path;
function onMouseDown(event) {
path = new Path({
strokeColor: 'Blue',
strokeWidth: 2,
strokeCap: 'round',
shadowColor: new Color('Blue'),
shadowBlur: 5,
shadowOffset: new Point(0, 0)
});
path.strokeColor.alpha = 1;
path.smooth();
}
function onMouseDrag(event) {
path.add(event.point);
}
</script>
</head>
<body>
<canvas id="canvas" resize></canvas>
<div class="about">
<p><a href="mailto:[email protected]">©2024 JAVIER UNKNOS</a> is a multidisciplinary designer currently based between <a href="https://goo.gl/maps/EuymJzteKrUZG4fh6" target="_blank">Madrid</a> & <a href="https://goo.gl/maps/M6WKDiYaZBTP5S667" target="_blank">Valencia</a> specialy focused on type design and visual comunication for wide range of international clients in diverse fields such cultural, art, fashion, music and audiovisual industries.</p>
</div>
<div class="contact">
<p>Feel free to contact me :)<br>
<a href="mailto:[email protected]">info [at] javierunknos [dot] com</a><br>
<a href="https://www.instagram.com/javierunknos/" target="_blank">[at] javierunknos</a></p>
</div>
<div class="footer">
<p>Last update <a href="https://en.wikipedia.org/wiki/January_24" target="_blank">24/11/23</a></p>
</div>
<div class="refresh">
<p><a class=info href=".">Clean<span>Drag to draw</span></a>
</div>
</body>
</html>