-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (51 loc) · 2.04 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
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Single Music | Random Album Art Generator</title>
<link rel="stylesheet" href="https://use.typekit.net/uxw6gwv.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="flexboxgrid.min.css">
<script defer src=https://CDN.JSDelivr.net/npm/p5></script>
<script defer src=https://CDN.JSDelivr.net/npm/p5/lib/addons/p5.dom.min.js></script>
<script defer src=sketch.js></script>
</head>
<body>
<main class="wrapper container tk-proxima-nova middle-xs">
<div class="row middle-xs">
<div class="col-sm-12 col-md-6">
<h1 class="border-bottom">Random Album Art Generator</h1>
<p>Ready to release your music, but need some art to accompany it? </p>
<p>Here's a free high-res album art generator for use on Single Music, iTunes, Spotify, & elsewhere!</p>
<form>
<div>
<h4>Band Name</h4>
<input id="band_name" type="text" class="text-field" />
</div>
<div>
<h4 class="label">
Pick Some Colors
</h4>
<input id="color_1" type="color" value="#7F36AF" class="color-field" />
<input id="color_2" type="color" value="#444444" class="color-field" />
<input id="color_3" type="color" value="#666666" class="color-field" />
<input id="color_4" type="color" value="#ffffff" class="color-field" />
<input id="color_5" type="color" value="#222222" class="color-field" />
</div>
<div>
<input type="button" id="generate" value="Generate" />
<input type="button" id="download" value="Download" />
</div>
</form>
</div>
<div class="col-sm-12 col-md-6">
<div id="art-wrapper" class="art-wrapper">
<!-- <img src="https://via.placeholder.com/1200x1200" /> -->
<div id="sketch"></div>
</div>
</div>
</div>
</main>
</body>
</html>