-
Notifications
You must be signed in to change notification settings - Fork 2
/
findus.html
124 lines (120 loc) · 3.57 KB
/
findus.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<title>GREGIS</title>
<script src="https://code.jquery.com/jquery-3.1.1.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.4.2/css/bulma.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/findus.css">
</head>
<body>
<!-- Top Navigation -->
<nav class="nav has-shadow">
<div class="container">
<div class="nav-left">
<a class="nav-item">
<h1> GREGIS </h1>
</a>
<a class="nav-item is-tab is-hidden-mobile" href="index.html">Home</a>
<a class="nav-item is-tab is-hidden-mobile" href="ourstory.html">Our Story</a>
<a class="nav-item is-tab is-hidden-mobile is-active" href="findus.html">Find Us</a>
</div>
<span class="nav-toggle">
<span></span>
<span></span>
<span></span>
</span>
<div class="nav-right nav-menu">
<a class="nav-item is-tab is-hidden-tablet is-active">Our Story</a>
<a class="nav-item is-tab is-hidden-tablet">Find Us</a>
<p class="nav-item"> A Web Application Built by Team NaN</p>
</div>
</div>
</nav>
<section class="section">
<div class="container">
<h1 class="title">Find Us</h1>
<h2 class="subtitle">
We're a team of UCSD Coding Bootcamp students working together to transform how people experience our fine city of San Diego. <br> You can find us on github!
</h2>
<!-- Team NaN's pictures/short bio -->
<div class="columns">
<div class="column">
<figure class="snip1477">
<img src="assets/images/cindy1.jpg" alt="sample38" />
<div class="title">
<div>
<h2>Cindy </h2>
<h4>Chen</h4>
</div>
</div>
<figcaption>
<p>Interaction Designer getting down in the weeds with code. </p>
</figcaption>
<a href="https://github.com/cindygchen" target="_blank"></a>
</figure>
</div>
<div class="column">
<figure class="snip1477">
<img src="assets/images/sungwoo.jpg" alt="sample91" />
<div class="title">
<div>
<h2>Sungwoo</h2>
<h4>Hur </h4>
</div>
</div>
<figcaption>
<p>Buy me some ramen and I'll write you some code.</p>
</figcaption>
<a href="https://github.com/ais047" target="_blank"></a>
</figure>
</div>
<div class="column">
<figure class="snip1477">
<img src="assets/images/jesse.png" alt="sample91" />
<div class="title">
<div>
<h2>Jesse</h2>
<h4>Lu</h4>
</div>
</div>
<figcaption>
<p>Part time poke snob, full time coding ninja.</p>
</figcaption>
<a href="https://github.com/Omnomon" target="_blank"></a>
</figure>
</div>
<div class="column">
<figure class="snip1477">
<img src="assets/images/bryce.jpg" alt="sample35" />
<div class="title">
<div>
<h2>Bryce</h2>
<h4>Miller</h4>
</div>
</div>
<figcaption>
<p>Ex environmental consultant switching gears to coding. He still cares about the environment. We promise. </p>
</figcaption>
<a href="https://github.com/bcmiller713" target="_blank"></a>
</figure>
</div>
</div>
<h2 class="subtitle">
Want to get in touch? Emails us!
</h2>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="content has-text-centered">
<p>
<strong>GREGIS</strong> by <a href="https://github.com/cindygchen/poke">Cindy Chen, Sungwoo Hur, Jesse Lu, Bryce Miller</a>
</p>
</div>
</div>
</footer>
</body>
</html>