-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
27 lines (26 loc) · 861 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SONGPHILE</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">
<img id="logo" src="img/logo.png">
<h1 class="logo-text">Listen to your moods</h1>
<button class="toggle" id="toggle">🌙</button>
</header>
<section class="menu">
<div class="controls-container">
<div class="emotion-radios" id="emotion-radios"></div>
</div>
<div class="song-modal" id="song-modal">
<button class="song-modal-close-btn" id="song-modal-close-btn">X</button>
<div id="song-modal-inner"></div>
</div>
</section>
<script type="module" src="./script.js"></script>
</body>
</html>