-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (63 loc) · 2.73 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="vendors/css/normalize.css">
<link rel="stylesheet" type="text/css" href="vendors/css/grid.css">
<link rel="stylesheet" type="text/css" href="resources/css/style.css">
<link href='https://fonts.googleapis.com/css?family=Lobster|Lato:400,100,300,300italic' rel='stylesheet' type='text/css'>
<title> George Lee </title>
</head>
<body>
<header>
<nav>
<div class="row">
<ul class="main-nav">
<li> <a href="#about"> About </a> </li>
<li> <a href="#"> Blog </a> </li>
<li> <a href="#"> Photos </a> </li>
<li> <a href="#"> Social </a> </li>
</ul>
</div>
</nav>
<div class="hero-text-box">
<h1> Hi, I'm George Lee.<br> Web developer and dog owner. </h1>
</div>
</header>
<section class="about" id="about">
<div class="row">
<div class="george">
<cite>
<img src="resources/css/img/about.jpg">
I'm based in Chicago, where I doodle with code</cite>
</div>
</div>
<div class="row">
<div class="col 1-of-3">
<p>
I have always held a strong passion to make connections between teams, disciplines and technologies.
I am most interested in finding the intersections between technology, civic life, language, and the people touched by these pathways. From Latin America, to Washington, DC to Chicago, I appreciate the story my experiences have helped me to write so far and that I continue to build with joy, laughter and while bringing out the best in my colleagues.
</p>
</div>
</div>
<div class="kaplan">
<cite>And this is my dog Kaplan<img src="resources/css/img/kaplan.png"></cite>
</div>
</section>
<section class="projects">
<h3> Here are some projects I have worked on</h3>
<div class="row">
<div class="col 1-of-3">
<h4><a href="https://shinethechi.herokuapp.com/"> Shine the Chi</a> </h4>
<p>Shine the Chi is a mobile-first application for the people of Chicago. It allows Chicagoans to make 311 requests to their city's own 311 API from their smartphone. It gathers user data through google maps to automatically detect and mark the location of a 311 request. Requests are then forwarded to the city to be addressed by local government. </p>
</div>
</div>
</section>
<footer>
<div class="row">
<!-- <div class="col span-1-of-2"> -->
<p> Created by George Lee. <br> Contact: <a href="mailto:[email protected]"> [email protected]</p>
<!-- </div> -->
</div>
</footer>
</body>
</html>