-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (54 loc) · 2.01 KB
/
index.html
File metadata and controls
60 lines (54 loc) · 2.01 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Tarrasqu3's home page</title>
<script>
/*
####################################
# 2023(c) Powered by #
# #
# Luca (Tarrasqu3) Galliani #
# Email: tarrasqu3@gmail.com #
####################################
*/
</script>
<!-- add P5 JS dependencies below -->
<script src="lib/p5.js"></script>
<!-- add Sketch file below -->
<script src="sketch.js"></script>
<!--that charset enables support for many international character sets-->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="description"
content="Tarrasqu3 GitHub home page, just a quick presentation"
/>
<!--keywords for SEO-->
<meta
name="keywords"
content="tarrasqu3, github, homepage"
/>
<meta name="author" content="Luca Galliani" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="refresh" content="600" />
<!--stylesheet reference and favicon-->
<link rel="stylesheet" type="text/css" href="source/style.css" />
<link rel="stylesheet" type="text/css" href="source/effect.css" />
<link rel="stylesheet" type="text/css" href="source/modules.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="icon" type="image/x-icon" href="source/favicon.ico" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200&display=swap"
rel="stylesheet"
/>
<!-- JS external document -->
<script src="functions/scripts.js" defer></script>
<script src="functions/mousePressOnCanvas.js async></script> <!-- Check if mouse is over the canvas -->
</head>
<body></body>
</html>