-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
150 lines (147 loc) · 4.78 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang="en">
<head>
<title>Grixel</title>
<link
rel="apple-touch-icon"
sizes="180x180"
href="images/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="images/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="images/favicon/favicon-16x16.png"
/>
<!-- access to webmanifest currently blocked on my site. Need to resolve -->
<link rel="manifest" href="https://amalfimakesit.com/site.webmanifest" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- social media display meta tags -->
<meta property="og:title" content="GRIXEL" />
<meta
property="og:description"
content="Get creative with this multi-featured pixel art canvas"
/>
<meta
property="og:image"
content="https://amalfimakesit.com/images/SocMedThumbnails/grixelPreview.png"
/>
<meta property="og:url" content="https://amalfimakesit.com/apps/Grixel" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="GRIXEL" />
<meta
name="twitter:description"
content="Get creative with this multi-featured pixel art canvas"
/>
<meta name="twitter:site" content="@stevecorwin9" />
<meta
name="twitter:image"
content="https://github.com/PrinceCorwin/Grixel/blob/main/images/favicon/faviconMaster.png?raw=true"
/>
<meta name="twitter:creator" content="@stevecorwin9" />
<script
src="https://kit.fontawesome.com/6c80d95586.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="grixel-style.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Megrim&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Kavivanar&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- add nav bar here -->
<div class="page-container">
<div class="btns">
<div id="pastel">
<button onclick="setScheme('pastel')">Pastel</button>
</div>
<div id="erase">
<button onclick="setScheme('erase')">Erase</button>
</div>
<div class="colorInput">
<label for="favcolor">CUSTOM COLOR:</label>
<input
type="color"
id="favcolor"
name="favcolor"
value="#20C8F1"
onclick="setScheme('custom')"
/>
</div>
<div class="slidecontainer">
<p>GRID SIZE:</p>
<input
type="range"
min="1"
max="100"
value="50"
class="slider"
id="sliderRange"
/>
<p>Grid Size: <span id="gridSize"></span></p>
</div>
<div id="clear">
<button class="clear" onclick="addDivs(gridSize)">Clear</button>
</div>
</div>
<div class="grid-container-column">
<h1 class="title">
<span id="g">g</span><span id="r">r</span><span id="i">i</span
><span id="x">x</span><span id="e">e</span><span id="l">l</span>
</h1>
<p class="instruction">Click in grid to start/stop drawing</p>
<div class="grid-container" id="grid-container"></div>
</div>
</div>
<footer>
<div class="footer-contact">
<div class="footer-contact-title">CONTACT:</div>
<div class="footer-contact-links">
<a href="mailto:[email protected]">email</a>
<a href="http://www.linkedin.com/in/steve-corwin-amalfitano-79345698/"
>LinkedIn</a
>
<a href="https://www.facebook.com/AmalfiMakesIt/">Store</a>
</div>
</div>
<div class="footer-center">
<div class="footer-social">
<a href="https://www.facebook.com/AmalfiMakesIt"
><i class="fab fa-facebook fa-1x"></i
></a>
<a href="https://www.instagram.com/amalfi.makes.it/"
><i class="fab fa-instagram fa-1x"></i
></a>
<a href="https://github.com/PrinceCorwin"
><i class="fab fa-github fa-1x"></i
></a>
<a href="https://www.youtube.com/c/TribeOfOne"
><i class="fab fa-youtube fa-1x"></i
></a>
</div>
<div class="copyright">
<small>© Copyright 2020, Steve Corwin Amalfitano</small>
</div>
</div>
<div class="footer-logo">
<a href="https://amalfimakesit.com/">
<img src="images/AMIfooter.svg" alt="Amalfi Makes It logo"
/></a>
</div>
</footer>
<script src="grixel-script.js"></script>
</body>
</html>