-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathai.html
32 lines (32 loc) · 966 Bytes
/
ai.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
<html>
<head>
<script src="https://cdn.tailwindcss.com">
</script>
<link rel="stylesheet" href="styles.css">
</head>
<body class="bg--700 min-h-screen flex flex-col items-center justify-center" style="background-color:rgb( 116, 52, 116)">
<div class="absolute top-0 left-0 m-4">
<div class="p-4 rounded-lg">
<img alt="Placeholder image" class="w-30 h-30" height="200" src="neueslogo.png" width="200" border="0"/>
</div>
</div>
<div class="text-center">
<h1 class="text-6xl font-bold">
UNDERTUNE
</h1>
<h2 class="text-2xl mt-4">
Find new music
</h2>
</p>
</div>
<div class="mt-8">
<input class="w-96 p-2 rounded-full shadow-lg" placeholder="Search" type="text" id="artistInput"/>
<button id="searchButton" onclick="searchArtist()"></button>
<div id="searchHistory" >
<ul class="space-y-1" id="list"></ul>
</div>
<div id="result"></div>
</div>
</body>
<script src="home.js"></script>
</html>