-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (93 loc) · 4.15 KB
/
index.html
File metadata and controls
93 lines (93 loc) · 4.15 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="stylesheets/website-index.css" />
<link rel="stylesheet" type="text/css" href="stylesheets/index-media-queries.css" />
</head>
<body>
<div class="container-fluid">
<div class="page-wrapper">
<div class="row">
<div class="col-md-12">
<section class="above-fold-panel">
<div class="upper">
<h1>CHRISTOPHER HUI</h1>
<h3>web developer</h3>
<h2>contact me</h2>
<ul class="social-media-links">
<li><a href="https://www.facebook.com/christopherhui">facebook</a></li>
<li><a href="http://www.linkedin.com/in/christopherhuii">linkedin</a></li>
<li><a href="mailto:christopher.kam.hui@gmail.com">email</a></li>
<li><a href="https://github.com/christopherhuii">github</a></li>
<li><a href="https://twitter.com/ChristopherHui">twitter</a></li>
</ul>
</div>
<div class="lower">
<a href="#">
<span class="glyphicon glyphicon-menu-down" id="explore" aria-hidden="true"></span>
</a>
</div>
</section>
</div>
</div>
<div class="row">
<section class="about-me">
<div class="vertical-center">
<h1 id="about-me-title">about me</h1>
<p>my name is christopher hui and i am a web developer looking for new opportunites to grow and broaden my skill sets. switching from an economics background, i taught myself how to program, and ended up attending and graduating from dev bootcamp sf. i learned how to write ruby code using sinatra and rails to build web applications. along the way, i picked up html/css, bootstrap, and javascript skills to make my applications look beautiful. currently, i am working with reactjs and am loving is so far! i love to collaborate and learn more about new technologies. i'd love to learn about any exciting ideas or opportunities!</p>
</div>
</section>
</div>
<div class="row">
<section class="projects">
<h1 class="title">Recent Projects</h1>
<a href="/react-ios-calculator">
<div class="col-md-6 squarebox" id="react-ios-calculator">
<div class="layer">
<div class="vertical-center">
<h1>React iOS Calculator</h1>
</div>
</div>
</div>
</a>
<a href="http://home-brewed.herokuapp.com/">
<div class="col-md-6 squarebox" id="brewed">
<div class="layer">
<div class="vertical-center">
<h1>brewED</h1>
</div>
</div>
</div>
</a>
<a href="http://redtreeproductions.github.io/dbc-rpg-web.html">
<div class="col-md-6 squarebox" id="dbc-rpg">
<div class="layer">
<div class="vertical-center">
<h1>DBC RPG</h1>
</div>
</div>
</div>
</a>
<a href="https://doineedajacket.herokuapp.com/">
<div class="col-md-6 squarebox" id="jacket">
<div class="layer">
<div class="vertical-center">
<h1>Do I Need a Jacket?</h1>
</div>
</div>
</div>
</a>
</section>
</div>
</div>
</div>
<script src="http://code.jquery.com/jquery.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/index.js"></script>
</body>
</html>