-
Notifications
You must be signed in to change notification settings - Fork 0
/
top-page.html
60 lines (51 loc) · 2.18 KB
/
top-page.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
<!DOCTYPE html>
<html lang="tr">
<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">
<!-- Bootstrap Import -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet">
<link rel="stylesheet" href="css/top_style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<title>Top – ISDb</title>
<link rel = "icon" href = "img/icon.svg" type = "image/x-icon">
</head>
<body style="background-color: #000000;">
<nav class="navbar navbar-expand-lg" style="background-color: #121212;">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">
<img src="img/icon.svg" width="64">
</a>
<div class="collapse navbar-collapse" style="align-items: center;" id="navbarSupportedContent" >
<!-- Nav Bar Pages Start -->
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item" >
<a class="nav-link" style="color:white" href="index.html">Popular</a>
</li>
<li class="nav-item" >
<a class="nav-link active" style="font-weight:bold;color:white" href="top-page.html">Top</a>
</li>
</ul>
<!-- Nav Bar Pages End -->
<!-- Search Bar Start -->
<form class="d-flex" role="search">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn" style="color: white; height: 40px;" type="submit">
<i class="material-icons" style="font-size: 27px;">search</i>
</button>
</form>
<!-- Search Bar End -->
</div>
</div>
</nav>
<main>
<section>
<ul id="top-song-list">
</ul>
</section>
</main>
<script src="javascript/top_page.js"></script>
</body>
</html>