-
Notifications
You must be signed in to change notification settings - Fork 2
/
sidebar.php
32 lines (32 loc) · 978 Bytes
/
sidebar.php
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
<div class="bg">
<div class="container">
<h3 class="bold" style="text-align: center">TR! Musique</h3>
<hr>
<div class="input-group">
<input type="text" class="form-control bg-light" id='sq' placeholder="Search" aria-label="Search" aria-describedby="button-addon4">
<div class="input-group-append">
<button class="btn btn-light" id="button" type="button">
<ion-icon name="search-outline"></ion-icon>
</button>
</div>
</div>
<br>
<ul class="nav">
<li>
<h2 class="nav-elem" id="home">
<ion-icon name="home" style="color: white"></ion-icon> Home
</h2>
</li>
<li>
<h2 class="nav-elem">
<ion-icon name="people" style="color: white"></ion-icon> Top Artists
</h2>
</li>
<li>
<h2 class="nav-elem">
<ion-icon name="caret-up" style="color: white"></ion-icon> Trending
</h2>
</li>
</ul>
</div>
</div>