forked from icl/187A_portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
133 lines (116 loc) · 3.93 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
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
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Webdev Maniac | Home</title>
<meta name="description" content="Home page of Webdev Maniac, has banner and listed skills">
<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 class=" active">
<a href="index.html">Home</a>
</span>
<span>
<a href="port.html">Portfolio</a>
</span>
<span>
<a href="about.html">About</a>
</span>
</div>
</div>
</div>
</div> <!-- end row -->
<div class="row">
<div class="span16">
<img src="images/Crazy_Blue_Planet.jpg" width="950px">
</div>
</div>
<div class="row">
<div class="span-one-third">
<div class="row">
<div class="span1">
<img class="icon" src="images/x-paint-icon.png" height="50">
</div>
<div class="span4">
<h4>Design & Computer Art</h4>
<ul>
<li>UI and Layout Designing</li>
<li>Photoshop</li>
<li>3DS Max</li>
<li>Maya</li>
</ul>
</div>
</div>
</div>
<div class="span-one-third">
<div class="row">
<div class="span1">
<img class="icon" src="images/html5.png" height="50">
</div>
<div class="span4">
<h4>Client-side Web Languages</h4>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>Javascript</li>
</ul>
</div>
</div>
</div>
<div class="span-one-third">
<div class="row">
<div class="span1">
<img class="icon" src="images/server.png" height="50">
</div>
<div class="span4">
<h4>Server-side & Database</h4>
<ul>
<li>PHP</li>
<li>MySQL</li>
<li>Java</li>
<li>JSP</li>
</ul>
</div>
</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>