forked from alchemy-capulus/capulus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (36 loc) · 1.32 KB
/
index.html
File metadata and controls
41 lines (36 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
<!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="index">
<header>
<img src="assets/images/capulus_logo.png" alt="capulus logo">
<h1>Capulus</h1>
<h3 class="tagline"><span id="search-span">Search.</span><span id="sip-span">Sip.</span><span id="study-span">Study.</span></h3>
</header>
<section class="form-wrapper">
<form id="landing-form">
<legend>Welcome</legend>
<fieldset>
<input type="text" id="username" placeholder="Enter your name.">
<button type="submit" formaction="search.html">Enter</button>
</fieldset>
</form>
</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>