-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathabout.html
More file actions
70 lines (57 loc) · 2.69 KB
/
about.html
File metadata and controls
70 lines (57 loc) · 2.69 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
64
65
66
67
68
69
70
<!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>
<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>
<section id="bio-wrapper">
<!-- CHARLY -->
<div class="bio">
<img src="assets/images/charly_cup.png" class="biopic" alt="Charly Welch avatar">
<div class="line"></div>
<h2>Charly Welch</h2>
<p>Charly is a crafty lady who loves cooking, writing code, hanging out with her kid, and exploring the Pacific Northwest with her dogs. She dreams in bright colors and mathematics, and fantasizes about her impending ability to handle big data.</p>
</div>
<!-- BRANCE -->
<div class="bio">
<img src="assets/images/brance_cup.png" class="biopic" alt="Brance Pearson avatar">
<div class="line"></div>
<h2>Brance Pearson</h2>
<p>Brance is a builder, designer, thinker, player, fiddler, coder, musician and chihuahua owner. He aspires to be RV bound with his graphic designer girlfriend roving the states with their two dogs, while building a more beautiful internet.</p>
</div>
<!-- KATLYN -->
<div class="bio">
<img src="assets/images/katlyn_cup.png" class="biopic" alt="Katlyn Tucker avatar">
<div class="line"></div>
<h2>Katlyn Tucker</h2>
<p>Katlyn enjoys warping time while learning to speak in code. When not making something or curating ideas, she and her teens continue their quest for the perfect taco. If she wins the lottery, expect a glitterfest before she disappears to travel the world.</p>
</div>
</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/app.js"></script>
</body>
</html>