-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.html
50 lines (50 loc) · 1.63 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
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<title>Sēarch</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<link rel="icon" type="image/png" href="index-pics/favicon.png">
<!-- Styles -->
<link href="stylesheets/styles.css" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<style>
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
color: #777;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
color: #777;
opacity: 1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
color: #777;
opacity: 1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
color: #777;
}
</style>
</head>
<body>
<nav class="navbar">
<div class="left">
<form action="">
<input type="text" class="result-search" placeholder="Search for anything">
<button><i class="fa fa-search"></i></button>
</form>
</div>
</nav>
<div id="results">
<div class="project" style="background: url(http://m2.behance.net/rendition/pm/25685965/1400/b5943c7a7197186f8f18082150ae97b2.jpg); no-repeat center center scroll; background-size: cover;">
<div class="container">
<div class="content">
<h1 class="name">300 in 300</h1>
<h3 class="author">Jay Mo</h2>
<h3><i class="fa fa-thumbs-up"></i><span class="num-likes">128</span><i class="fa fa-eye"></i><span class="num-views">1337</span></h3>
<a href="#" target="_blank">
<button class="view-work">View Work</button>
</a>
</div>
</div>
</div>
</body>
</html>