-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication.html
35 lines (34 loc) · 1.38 KB
/
application.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
<!DOCTYPE html>
<html>
<head>
<title>application</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.1/css/materialize.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.1/js/materialize.min.js"></script>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<!-- navigation bar -->
<nav style="background: #9c27b0;">
<div class="nav-wrapper">
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li><a href="becomeHost.html">Become a Host</a></li>
<li><a href="badges.html">Sign Up</a></li>
<li><a href="collapsible.html">Login</a></li>
</ul>
</div>
</nav>
<!-- input feilds -->
<div class="row" style="margin-top: 10%;">
<div class="col s10" style="margin-left: 6%;">
<div class="input-field col s9">
<input placeholder="Search for Location" id="download" type="text" class="validate">
<label for="download"></label>
</div>
<div class="col s3" style="text-align: right;">
<button class="waves-effect waves-light btn-large" style="background: #9c27b0;"><i class="material-icons right">search</i><a href="rate.html" style="color: white;">search</a></button>
</div>
</div>
</div>
</body>
</html>