-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (69 loc) · 2.33 KB
/
index.html
File metadata and controls
81 lines (69 loc) · 2.33 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Art Meets Music</title>
<link rel="icon" href="favicon.png" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Theme Toggle Button -->
<button id="toggleTheme" title="Toggle light/dark" aria-label="Toggle theme"></button>
<div class="container">
<header>
<h1>Art Meets Music</h1>
<p class="subtitle">
Type an artist or band name to discover a random artwork from the Art Institute of Chicago.
</p>
</header>
<!-- Search & Surprise Controls -->
<div class="controls">
<input id="artistInput" type="text" placeholder="Search artist or band..." />
<button id="searchButton">Search</button>
<button id="surpriseButton">Surprise Pairing</button>
</div>
<!-- Main content wrapper -->
<main class="results-wrapper">
<div class="results" id="resultsArea">
<!-- Music Section -->
<section class="music-section">
<h2>🎵 Music</h2>
<div id="musicResult">No results yet.</div>
</section>
<!-- Separator -->
<div class="separator">
<img src="favicon.png" alt="logo" class="separator-icon" />
</div>
<!-- Art Section -->
<section class="art-section">
<h2>🎨 Artwork</h2>
<div id="artResult">No results yet.</div>
</section>
</div>
</main>
<!-- Connection message area -->
<h2 id="aboutHeading" class= "about-section" style="display:none;">About the Work</h2>
<div id="connectionMessage" class= "about-section" style="display:none;"></div>
<!-- Footer -->
<footer>
<p>
Data sourced from:
<a href="https://developer.apple.com/library/archive/documentation/AudioVideo/Conceptual/iTuneSearchAPI/index.html" target="_blank" rel="noopener">
iTunes Search API
</a>
&
<a href="https://api.artic.edu/docs/" target="_blank" rel="noopener">
Art Institute of Chicago API
</a>
</p>
<p>
Coded by <a href="https://petratype.github.io/portfolio" target="_blank" rel="noopener">
Petratype
</a>
</p>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>