-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (54 loc) · 2.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Art Vending Machine</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Art Vending Machine</h1>
<p> Get to know our Art and Artist by clicking on the corresponding slot.</p>
</header>
<section class="vending-machine">
<div class="machine-grid">
<!--
<a href="slots/slot01.html" class="machine-slot">01</a>
<a href="slots/slot11.html" class="machine-slot">11</a>
<a href="slots/slot21.html" class="machine-slot">21</a>
<a href="slots/slot31.html" class="machine-slot">31</a>
<a href="slots/slot41.html" class="machine-slot">41</a>
<a href="slots/slot51.html" class="machine-slot">51</a>
<a href="slots/slot61.html" class="machine-slot">61</a>
<a href="slots/slot71.html" class="machine-slot">71</a>
<a href="slots/slot81.html" class="machine-slot">81</a>
-->
<a href="slots/slot91.html" class="machine-slot">91</a>
<!--
<a href="slots/slot12.html" class="machine-slot">12</a>
-->
<a href="slots/slot32.html" class="machine-slot">32</a>
<a href="slots/slot52.html" class="machine-slot">53</a>
<!--
<a href="slots/slot72.html" class="machine-slot">72</a>
-->
<a href="slots/slot92.html" class="machine-slot">92</a>
<!--
<a href="slots/slot13.html" class="machine-slot">13</a>
<a href="slots/slot33.html" class="machine-slot">33</a>
<a href="slots/slot53.html" class="machine-slot">53</a>
<a href="slots/slot73.html" class="machine-slot">73</a>
<a href="slots/slot93.html" class="machine-slot">93</a>
-->
<!-- Add more slots as needed -->
</div>
</section>
<footer>
<p>Your art could be here!</p>
<p>Interested in exhibiting and selling your art pieces? Text us on <a href="https://discord.com/channels/687388105531326510/1202275709972910080">Discord</a></p>
<p>NYC Resistor, 87 3rd Ave, Brooklyn, NY 11217</p>
</footer>
<script src="script.js"></script>
</body>
</html>