-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdetail.html
More file actions
44 lines (36 loc) · 959 Bytes
/
Copy pathdetail.html
File metadata and controls
44 lines (36 loc) · 959 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>SoundSpace – Details</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<!-- NAVBAR -->
<header class="navbar">
<div class="logo">SoundSpace</div>
<nav>
<a href="index.html#about">About</a>
<a href="index.html#discover">Discover</a>
<a href="index.html#categories">Categories</a>
</nav>
</header>
<!-- PAGE CONTAINER -->
<div class="page" id="detail">
<section class="hero">
<h2 id="title"></h2>
<p id="description"></p>
</section>
<section>
<img id="image" alt="" />
</section>
<p style="margin-top: 32px;">
<a href="index.html#discover" style="color: var(--accent); font-weight: 600;">
← Back to Discover
</a>
</p>
</div>
<script src="detail.js"></script>
</body>
</html>