-
Notifications
You must be signed in to change notification settings - Fork 0
/
searchBar.html
60 lines (60 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<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">
<title>Search Bar</title>
<style>
*{
margin: 0;padding: 0;
font-family: sans-serif;
}
.topnav a{
float: left;
display: block;
color: black;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover{
background-color: #ddd;
color: black;
}
.topnav a.active{
background-color: #2196F3;
color: white;
}
.topnav input[type=text]{
float: right;
padding: 6px;
border: none;
border: 1px solid #2196F3;
outline: none;
margin-top: 8px;
margin-right: 16px;
font-size: 17px;
}
@media screen and (max-width: 600px){
.topnav a, .topnav input[type=text]{
float: none;
display: block;
text-align: left;
width: 100%;
margin: 0;
padding: 14px;
}
}
</style>
</head>
<body>
<div class="topnav">
<a href="#home" class="active">Home</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
<input type="text" placeholder="Search..">
</div>
</body>
</html>