-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
50 lines (42 loc) · 1.96 KB
/
about.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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>About Me</title>
<link rel="stylesheet" type="text/css" href="/css/bootstrap.min.css"/>
<link rel="stylesheet" media="screen and (max-width:800px)" type="text/css" href="/css/small.css"/>
<link rel="stylesheet" media="screen and (min-width:801px)" type="text/css" href="/css/normal.css"/>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.0/jquery-ui.min.js"></script>
<script type="text/javascript" charset="utf-8" src="js/menu.js"></script>
</head>
<body>
<div class="site-wrapper">
<div class="header">
<img src="/Downloads/Katy Perry.png"></img>
</div>
<div class="menu-button"><a href="#menu"><img src="/img/left.png"></img></a></div>
<div id="about-me">
<p>My name is Joey and I'm a web developer who specializes in stack development with a focus on LAMP and Rails stacks. I'm currently learning PAAL stack and also take great interest in cryptography and information security.</p>
</div>
<div class="footer">
<hr>
Joey Chung<br />
<a href="mailto:joeychung960@gmail.com">Email</a> •
<a href="http://github.com/jchung05" target="_blank">Github</a> •
<a href="http://linkedin.com/in/jchung05" target="_blank">LinkedIn</a>
</div>
</div>
<nav>
<div class="menu-bar">
<ul class="nav">
<li><a href="/index.html">Home</a></li><br />
<li><a href="/about.html">About Me</a></li>
<li><a href="/possiblog.html">The Possiblog</a></li>
<li><a href="/portfolio.html">Portfolio</a></li>
<li><a href="/resume.html">My Resume</a></li>
</ul>
</div>
</nav>
</body>
</html>