-
Notifications
You must be signed in to change notification settings - Fork 1
/
searchbar.html
65 lines (60 loc) · 1.74 KB
/
searchbar.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="searchstyle.css">
<title>Document</title>
</head>
<body>
<div id="container">
<!-- Nav Bar Section-->
<nav class="navbar navbar-expand-sm navbar-light bg-light">
<img src="" alt="N0teDr0p">
<main>
<div class="navbar-nav mr-auto nav">
<li class="nav-item active">
<li class="nav-item">
<a class="nav-link active" href="index.html">Home Page</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about_project.html">Project Information</a>
</li>
<li class="nav-item">
<a class="nav-link" href="searchbar.html">Search</a>
</li>
</ul>
</div>
</main>
</nav>
<header>
<h1>n0tedr0p</h1>
<h4>tagline</h4>
<input type="text">
<br>
<button type="submit" id="searchBtn">Discover Music</button>
</header>
</div>
<div class="row">
<div class="col" id="newsContainer">
<h3>LOCAL MUSIC GROUP NEWS</h3>
<div id="newsFeed">
<p>HEADLINES WILL POPULATE THIS DIV</p>
</div>
</div>
<div class="col" id="eventsContainer">
<h3>UPCOMING LIVE EVENTS</h3>
<div id="eventsFeed">
<p>UPCOMING EVENTS WILL POPULATE THIS DIV</p>
</div>
</div>
</div>
<footer>
<h4>Made by </h4>
<p>© Copyright</p>
</footer>
</div>
</body>
</html>