-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample-3.html
More file actions
63 lines (61 loc) · 2.2 KB
/
Copy pathexample-3.html
File metadata and controls
63 lines (61 loc) · 2.2 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Custom Search Bar HTML</title>
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" media="all" rel="stylesheet">
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" media="all" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab" rel="stylesheet" type="text/css">
<link href="css/styles.css" media="all" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.1/modernizr.min.js"></script>
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport">
</head>
<body>
<nav class="clearfix">
<img class="logo" src="images/logo.png" width="50">
<a class="btn-search" href="#">
<div class="fa fa-search"></div>
</a>
</nav>
<div class="search-input search-input-fullscreen">
<form id="search-form" role="search">
<input autocomplete="off" autocorrect="off" id="search-input" placeholder="Search" type="text">
<div class="close">×</div>
</form>
</div>
<div class="container main-content">
<div class="links">
<a class="btn" href="index.html">Example 1</a>
<a class="btn" href="example-2.html">Example 2</a>
<a class="btn active" href="example-3.html">Example 3</a>
</div>
<div class="row">
<div class="col-sm-3">
<div class="item"></div>
</div>
<div class="col-sm-3">
<div class="item"></div>
</div>
<div class="col-sm-3">
<div class="item"></div>
</div>
<div class="col-sm-3">
<div class="item"></div>
</div>
<div class="col-sm-3">
<div class="item"></div>
</div>
<div class="col-sm-3">
<div class="item"></div>
</div>
<div class="col-sm-3">
<div class="item"></div>
</div>
<div class="col-sm-3">
<div class="item"></div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>