-
Notifications
You must be signed in to change notification settings - Fork 1
/
album.html
75 lines (68 loc) · 3.5 KB
/
album.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/album.css">
<link rel="stylesheet" href="css/header.css">
<script src="js/data.js" defer></script>
<script src="js/album.js" defer></script>
</head>
<body>
<header class="p-3 mb-3 border-bottom container">
<div class="container">
<div class="d-flex flex-wrap align-items-center justify-content-center">
<a href="index.html" class="logo-text d-flex align-items-center me-3 mb-2 mb-lg-0 text-dark text-decoration-none">
Музыка
<!-- <svg class="bi me-2" width="40" height="32" role="img" aria-label="Bootstrap"><use xlink:href="#bootstrap"></use></svg> -->
</a>
<ul class="nav col-12 col-lg-auto mb-2 justify-content-center mb-md-0 a">
<li><a href="#" class="nav-link px-2">Гравная</a></li>
<li><a href="#" class="nav-link px-2">Подкасты и книги</a></li>
<li><a href="#" class="nav-link px-2">Для детей</a></li>
<li><a href="#" class="nav-link px-2">Потоки</a></li>
<li><a href="#" class="nav-link px-2">Коллекции</a></li>
</ul>
<form class="col-12 col-lg-auto mb-3 mb-lg-0 me-lg-3 me-lg-auto ms-4" role="search">
<input type="search" class="form-control" placeholder="Поиск..." aria-label="Поиск">
</form>
<span class="plus-badge badge rounded-pill bg-secondary me-3">
ПЛЮС
</span>
<div class="dropdown text-end">
<a href="#" class="d-block link-dark text-decoration-none" data-bs-toggle="dropdown" aria-expanded="false">
<img src="assets/2.jpg" alt="mdo" width="48" height="48" class="rounded-circle">
</a>
<ul class="dropdown-menu text-small">
<li><a class="dropdown-item" href="#">Профиль</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="#">Выйти</a></li>
</ul>
</div>
</div>
</div>
</header>
<main class="container" >
<div class="row mt-5">
<div class="col col-lg-6 p-3 album">
<div class="card mb-3">
<div class="row">
</div>
</div>
</div>
<div class="col col-lg-6 p-3">
<ol class="list-group playlist">
</ol>
</div>
</div>
</main>
<footer class="py-3 my-4">
<p class="text-center text-muted">© 2023 Company, Inc</p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</body>
</html>