-
Notifications
You must be signed in to change notification settings - Fork 2
/
search.html
46 lines (40 loc) · 1.29 KB
/
search.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Pacifico">
<link rel="icon" href="http://obj-cache.cloud.ruanbekker.com/favicon.ico">
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet">
<title>Song Search</title>
</head>
<body>
<section style='background-image:url(htmlbackground.jpg)';>
<div class="container">
<div style="background:transparent !important" class="jumbotron">
<div style="font-family: 'Pacifico', cursive;">
<p>
<center>
<font size="8">How are you feeling today?</font>
</center>
</p>
</div>
</div>
<form action="results" method="post">
<div class="input-group">
<input type="text" class="form-control input-lg" name="input" placeholder="Search" autofocus>
<div class="input-group-btn">
<button class="btn btn-primary btn-lg" type="submit">
<i class="glyphicon glyphicon-search"></i>
</button>
</div>
</div>
</form>
<br><br>
<footer class="footer">
<p>© 2019 Team 2 </p>
</footer>
</section>
</div>
</div>
</body>
</html>