Oh, really? I was under the impression that implementing chinese would be the same regardless of what was already coded..but I'm a true noob, so..hahaha x_x""
Here is the main page so far (the top portion is just to get popups working on the different pages, which i haven't made yet, and the actual content only consists of an image and small note within the body):
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title> Portfolio</title>
<link rel="stylesheet" href="css.css" type="text/css" />
<script language="JavaScript1.2" type="text/javascript">
<!-- ;
var newwindow;
var wheight = 0, wwidth = 0;
function popitup5(url, title, iwidth, iheight, colour) {
var pwidth, pheight;
if ( !newwindow || newwindow.closed ) {
pwidth=iwidth+30;
pheight=iheight+30;
newwindow=window.open('','htmlname','width=' + pwidth +',height=' +pheight + ',resizable=1,top=50,left=10');
wheight=iheight;
wwidth=iwidth;
}
if (wheight!=iheight || wwidth!=iwidth ) {
pwidth=iwidth+30;
pheight=iheight+90;
newwindow.resizeTo(pwidth, pheight);
wheight=iheight;
wwidth=iwidth;
}
newwindow.document.clear();
newwindow.focus();
newwindow.document.writeln('<html> <head> <title>' + title + '<\/title> <\/head> <body bgcolor= \"' + colour + '\"> <center>');
newwindow.document.writeln('<img src=' + url + ' title=\"' + title + '\" alt=\"' + title + '\" >');
newwindow.document.writeln('<\/center> <\/body> <\/html>');
newwindow.document.close();
newwindow.focus();
}
// Routines to tidy up popup windows when page is left
// Call with an onUnload="tidy5()" in body tag
function tidy5() {
if (newwindow && !newwindow.closed) { newwindow.close(); }
}
// Based on JavaScript provided by Peter Curtis at
www.pcurtis.com -->
</script>
</head>
<BODY onUnload="tidy5()" >
<div id="constraint">
<div id="banner">
</div>
<div id="links"><a href="index.html"> main</a> |
<a href="resume.html"> resume</a> |
<a href="reference.html"> reference</a> |
<a href="coverletter.html"> cover letter</a> |
<a href="projects.html"> projects </a> |
<a href="gallery.html"> gallery</a>
</div>
<div id="main">
<br />
<img src="img/front.jpg" />
<br /><br />
</div>
<div id="note">
Work may not be copied, reproduced or altered.
</div>
</div>
</body>
</html>