-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsearch.html
More file actions
43 lines (38 loc) · 1.32 KB
/
search.html
File metadata and controls
43 lines (38 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Lancelot" rel="stylesheet">
<title>Capulus | Search. Sip. Study</title>
</head>
<body id="search">
<header class="hero-lg">
<a href="index.html"><img src="assets/images/capulus_logo.png" alt="capulus logo"></a>
<h3 class="tagline">Search. Sip. Study.</h3>
<div class="header-inner">
<div></div>
<nav>
<ul>
<li><a href="search.html">Search</a></li>
<li><a href="suggest.html">Suggest</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
</div>
</header>
<h1 id="greeting"></h1>
<section id="thumbnail-wrapper"></section>
<footer>
<div id="suggest-link">
<a href="suggest.html">Suggest a cafe.</a>
</div>
<p> © copyright 2017 | All rights reserved. | Capulus App</p>
</footer>
<script src="js/cafe.js"></script>
<script src="js/app.js"></script>
<script src="js/dry.js"></script>
</body>
</html>