-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (61 loc) · 2.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<title>Chromakopia Font Profile Picture Generator</title>
<link rel="stylesheet" href="styles.css">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4442442084947681"
crossorigin="anonymous"></script>
<link rel="icon" type="image/png" href="icon.png"/>
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-8CREVX8Q5B"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-8CREVX8Q5B');
</script>
<body>
<h1>Make Your Chromakopia PFP</h1>
<div>
<input type="text" id="wordInput" placeholder="Type your word here">
</div>
<div>
<label for="textColorInput">Text Color:</label>
<input type="color" id="textColorInput" value="#000000">
<label for="defaultTextColor">
<input type="checkbox" id="defaultTextColor">
Chromakopia Green
</label>
</div>
<div>
<label for="bgColorInput">Background Color:</label>
<input type="color" id="bgColorInput" value="#01823f">
<input type="checkbox" id="bgTransparent">
<label for="bgTransparent">Transparent Background</label>
</div>
<div>
<label for="bgImageInput" class="custom-file-upload">Upload Background Image:</label>
<button type="button" class="upload-btn">Choose File</button>
<input type="file" id="bgImageInput" accept="image/*" style="display:none;">
</div>
<div>
<button id="downloadButton">Download Image</button>
</div>
<div>
<canvas id="wordCanvas" style="display:none;"></canvas>
<!-- Gabriel Kahen is the goat he wrote all this -->
<img id="generatedImage" alt="Chromakopia PFP">
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fontfaceobserver/2.1.0/fontfaceobserver.standalone.js"></script>
<script src="script.js"></script>
<footer>
<div class="footer-content">
<p>Developed by <a href="https://gabrielkahen.com" target="_blank">Gabriel Kahen</a>
<p>Designed by <a href="https://www.instagram.com/birch_art/" target="_blank">Birch Lee</a>
</div>
</footer>
</body>
</html>