forked from icl/187A_portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
95 lines (79 loc) · 2.9 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Webdev Maniac | About</title>
<meta name="description" content="contact information of scott chen, web developer and designer">
<meta name="author" content="Scott Chen">
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Base Stylsheets http://twitter.github.com/bootstrap/ -->
<link rel="stylesheet" href="stylesheets/lib/bootstrap.css" >
<link rel="stylesheet" href="stylesheets/lib/jquery.fancybox.css" >
<!-- Your Stylesheets -->
<link rel="stylesheet" href="stylesheets/main.css" >
<!-- Base Javascripts -->
<script src="javascripts/lib/base.js"></script>
<!-- Fancybox Lightbox http://fancyapps.com/fancybox/#examples -->
<script src="javascripts/lib/jquery.fancybox.js"></script>
<!-- Your Javascripts -->
<script src="javascripts/main.js"></script>
</head>
<body>
<div class="container">
<div class="row" id="top_nav">
<div class="span3" id="logo">
<a href="index.html"><img src="images/logo.png" height="80"></a>
</div>
<div class="span9 offset4">
<div class="row">
<div class="span9 nav_button">
<span>
<a href="index.html">Home</a>
</span>
<span>
<a href="port.html">Portfolio</a>
</span>
<span class=" active">
<a href="about.html">About</a>
</span>
</div>
</div>
</div>
</div> <!-- end row -->
<div class="row" id="about">
<div class="span4 offset4" id="about_info">
<p>I've been in web-development forever. I'm a programmer, artist, designer, innovator, creator, and then there's the everyday, oh-so-boring college student.</p>
<p>
Contact me if you're interested in any collaboration. I love to hear about your ideas!
</p>
<pre>
Email: <a href="mailto:[email protected]">[email protected]</a>
Cell: 000-000-0000
</pre>
</div>
<div class="span5 offset3">
<div id="about_img">
<img src="images/about.jpg">
</div>
</div>
</div>
</div> <!-- end container -->
<footer>
<span>
<a href="index.html">Home</a>
</span>
<span>
<a href="port.html">Portfolio</a>
</span>
<span>
<a href="about.html">About</a>
</span>
<br/>
<br/>
Website by Sze Hao (Scott) Chen | <a href="mailto:[email protected]">[email protected]</a> | Last Updated in January 2012 | Banner image found on Google Image
</footer>
</body>
</html>