<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Vicker&#039;s Coding Kitchen &#187; CSS</title>
	<atom:link href="http://vicker.cubeforge.net/blog/tag/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://vicker.cubeforge.net/blog</link>
	<description>Hong Kong Adobe Flash platform developer (Flex, AIR and Flash)</description>
	<lastBuildDate>Wed, 27 Jul 2011 18:27:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Flex FAQ #8: Font Embedding 全集</title>
		<link>http://vicker.cubeforge.net/blog/2009/04/07/flex-faq-8-all-about-font-embedding/</link>
		<comments>http://vicker.cubeforge.net/blog/2009/04/07/flex-faq-8-all-about-font-embedding/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 16:40:15 +0000</pubDate>
		<dc:creator>Vicker</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flex FAQ]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[DynaComware]]></category>
		<category><![CDATA[dynamic text]]></category>
		<category><![CDATA[embed]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[font-face]]></category>
		<category><![CDATA[font-family]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://vicker.cubeforge.net/blog/?p=280</guid>
		<description><![CDATA[尋日要幫一個 application 做 font embedding 主要係想 embed 楷書 其實 font embedding 本身並唔係一件難事 因為 Flex 本身已經 support~ 但係 embed 得黎又要控制好 file size 就唔簡單~! 至於楷書o既問題就更加多&#8230; 應該 specific d 講&#8230; 係 Microsoft o既標楷體o既問題更加多&#8230; 由淺入深~ 1) Flex 直接 Embed font 方法主要有兩種 1A) Flex CSS refer local font o係 CSS 裡面 declare font-face 然後 source 利用 local 指住個字體名 最後 declare [...]
Related posts:<ol>
<li><a href='http://vicker.cubeforge.net/blog/2008/12/09/adobe-max-sf-day-1/' rel='bookmark' title='Adobe MAX SF day 1'>Adobe MAX SF day 1</a></li>
<li><a href='http://vicker.cubeforge.net/blog/2007/08/17/flex-faq-3-how-to-download-a-file-in-flex-using-filereference/' rel='bookmark' title='Flex FAQ #3: 點樣用 Flex FileReference 下載檔案'>Flex FAQ #3: 點樣用 Flex FileReference 下載檔案</a></li>
<li><a href='http://vicker.cubeforge.net/blog/2007/08/07/essential-actionscript-30-and-actionscript-30-design-patterns/' rel='bookmark' title='Essential ActionScript 3.0 and ActionScript 3.0 Design Patterns'>Essential ActionScript 3.0 and ActionScript 3.0 Design Patterns</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>尋日要幫一個 application 做 font embedding<br />
主要係想 embed 楷書<br />
其實 font embedding 本身並唔係一件難事<br />
因為 Flex 本身已經 support~<br />
但係 embed 得黎又要控制好 file size 就唔簡單~!<br />
至於楷書o既問題就更加多&#8230;<br />
應該 specific d 講&#8230; 係 Microsoft o既標楷體o既問題更加多&#8230;</p>
<p>由淺入深~</p>
<p><strong>1) Flex 直接 Embed font</strong></p>
<p>方法主要有兩種</p>
<p><strong>1A) Flex CSS refer local font</strong></p>
<pre class="brush: css; title: ; notranslate">
@font-face
{
	src: local(&quot;標楷體&quot;);
	font-family: &quot;KaiShu&quot;;
}
</pre>
<p>o係 CSS 裡面 declare font-face<br />
然後 source 利用 local 指住個字體名<br />
最後 declare 一個 font family 名~ (呢個隨意就得)<br />
呢度最 tricky 係個字體名&#8230; 特別係 Mac 機再加埋中文字&#8230;<br />
經常攪到 Flex Builder compile o既時候會出現 local build error&#8230;</p>
<p>好: 快<br />
壞: 唔穩定, File Size 大</p>
<p><strong>1B) Flex CSS refer font file</strong></p>
<pre class="brush: xml; title: ; notranslate">
@font-face
{
	src: url(&quot;/fonts/標楷體.ttc&quot;);
	font-family: &quot;KaiShu&quot;;
}
</pre>
<p>想解決 1A 出現o既問題就要利用 source 指 url 直接指住 font file<br />
font file 大家可以o係唔同地方買或者 download 到<br />
如果o係 system font 的話</p>
<p>Windows 可以o係控制台 > 字型 裡面抄走<br />
Mac 可以o係 System/Library/Fonts 裡面抄走<br />
(Mac 特別要留意副檔名 dfont 的係 embed 唔到架)</p>
<p>好: 穩定~ 準<br />
壞: File Size 大</p>
<p><strong>備註: Embed Microsoft Windows 內置標楷體o既爆字問題</strong></p>
<p>如果大家要 embed 標楷體~ 就千祈唔好用 Windows 裡面o既標楷體<br />
因為 embed 之後o係 Mac 機睇係會出現爆字問題</p>
<p>關於爆字 (字形破碎) o既問題請參考 &#8211; 破碎的細明體研究院<br />
<a href="http://bbs.bnw.com.tw/conference/viewtopic.php?t=2856">http://bbs.bnw.com.tw/conference/viewtopic.php?t=2856</a></p>
<p>簡單黎講o係 MS 的標楷體 version 太舊 (3.0)<br />
解決方法係去華康科技買返新 d o既 version (latest 5.0) (我試過 2005 年o既 3.10 無問題)</p>
<p>不過用華康標楷體 3.10 最大o既問題係 file size&#8230;<br />
MS (4.9Mb) 華康 (27.9Mb)<br />
一個 Flex application 用之前要 download 4.9Mb 已經唔容易&#8230; 更何況 27.9Mb&#8230;</p>
<p>另外更要特別提一提<br />
Embed 27.9Mb o既字形係好耐同好唔 stable 架<br />
我曾經多次出現 out of memory o既問題&#8230;<br />
10 次 compile 得 2 &#8211; 3 次成功&#8230;<br />
(Mac Pro 都頂唔順&#8230; 好難相信&#8230; 應該又係 Flex Builder 問題&#8230;)</p>
<p><strong>2) Flex 利用 unicode-range 抽出要 embed o既字</strong></p>
<pre class="brush: css; title: ; notranslate">
@font-face
{
	src: url(&quot;/fonts/標楷體.ttc&quot;);
	font-family: &quot;KaiShu&quot;;
	unicode-range: U+5011,U+6211;
}
</pre>
<p>其實利用 Flex CSS Embed font o既時候係可以透過 unicode-range 抽出某 d 字架<br />
以上面為例就會將 &#8220;們&#8221; 字同 &#8220;我&#8221; 字抽出黎啦~!<br />
究竟點解係 5011 同 6211 呢?</p>
<p>其實 5011 同 6211 係 d 字o既 unicode value in HEX<br />
想 get 一個中文字o既 unicode<br />
大家可以用呢個 Chinese to Unicode converter<br />
<a href="http://www.chinese-tools.com/tools/converter-unicode.html">http://www.chinese-tools.com/tools/converter-unicode.html</a><br />
記住要將個 result 轉返做 HEX value</p>
<p>如果大家用 Mac o既 Numbers 的話可以用下面呢個 equation</p>
<pre class="brush: vb; title: ; notranslate">
=CONCATENATE(&quot;U+&quot;,RIGHT(DEC2HEX(CODE(&quot;字&quot;)),4))
</pre>
<pre class="brush: css; title: ; notranslate">
@font-face
{
	src: url(&quot;/fonts/標楷體.ttc&quot;);
	font-family: &quot;KaiShu&quot;;
	unicode-range: U+5011-U+6211;
}
</pre>
<p>至於呢個係另一種寫法~ 將 5011 至 6211 所有字都 embed~<br />
當然大家可以 combine comma &#8220;,&#8221; 同 dash &#8220;-&#8221; 兩種寫法啦~!!</p>
<p>好: 要用o既字先 embed~ 有效控制 file size<br />
壞: 煩&#8230; 要逐粒字加都幾浪費時間&#8230;<br />
更壞: Flex Builder 應該有 bug&#8230; 當 unicode-range 後面太多野會出現 compilation error&#8230;</p>
<p><strong>3) Flash + Flex Combo = 無敵~!</strong></p>
<p>試左一整日&#8230; 放棄左一輪之後&#8230; 突然諗到o既絕技~!<br />
Flash + Flex Combo</p>
<p>首先利用 Flash dynamic text field 寫低需要o既字</p>
<p><img src="http://vicker.cubeforge.net/img/blog/flex_faq_008_01.png" alt="http://vicker.cubeforge.net/img/blog/flex_faq_008_01.png" /></p>
<p>記住要揀埋你需要o既 font<br />
跟住 set dynamic text field o既 font embedding</p>
<p><img src="http://vicker.cubeforge.net/img/blog/flex_faq_008_02.png" alt="http://vicker.cubeforge.net/img/blog/flex_faq_008_02.png" /></p>
<p>然後揀 Auto Fill~<br />
一下就掂晒~!</p>
<p><img src="http://vicker.cubeforge.net/img/blog/flex_faq_008_03.png" alt="http://vicker.cubeforge.net/img/blog/flex_faq_008_03.png" /></p>
<p>然後 Export SWF file~<br />
最後 Flex embed SWF file</p>
<pre class="brush: css; title: ; notranslate">
@font-face
{
	src: url(&quot;/fonts/font.swf&quot;);
	font-family: &quot;DFBiaoKaiShu-B5&quot;;
}
</pre>
<p>留意 font family 一欄今次唔可以隨便填<br />
一定要同 Flash 裡面寫o既完全一樣<br />
以我上面 example 為例就係 DFBiaoKaiShu-B5</p>
<p>之後就可以 compile 啦~!</p>
<p>好: 快 準 穩定<br />
壞: 要開多一個 application&#8230; =.=</p>
<p>Related posts:<ol>
<li><a href='http://vicker.cubeforge.net/blog/2008/12/09/adobe-max-sf-day-1/' rel='bookmark' title='Adobe MAX SF day 1'>Adobe MAX SF day 1</a></li>
<li><a href='http://vicker.cubeforge.net/blog/2007/08/17/flex-faq-3-how-to-download-a-file-in-flex-using-filereference/' rel='bookmark' title='Flex FAQ #3: 點樣用 Flex FileReference 下載檔案'>Flex FAQ #3: 點樣用 Flex FileReference 下載檔案</a></li>
<li><a href='http://vicker.cubeforge.net/blog/2007/08/07/essential-actionscript-30-and-actionscript-30-design-patterns/' rel='bookmark' title='Essential ActionScript 3.0 and ActionScript 3.0 Design Patterns'>Essential ActionScript 3.0 and ActionScript 3.0 Design Patterns</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://vicker.cubeforge.net/blog/2009/04/07/flex-faq-8-all-about-font-embedding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sometimes I hate Flex… Sometimes</title>
		<link>http://vicker.cubeforge.net/blog/2008/07/24/sometimes-i-hate-flex%e2%80%a6-sometimes/</link>
		<comments>http://vicker.cubeforge.net/blog/2008/07/24/sometimes-i-hate-flex%e2%80%a6-sometimes/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 19:15:22 +0000</pubDate>
		<dc:creator>Vicker</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[AdvancedDataGrid]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Flash Video Encoder]]></category>
		<category><![CDATA[Flex Builder]]></category>
		<category><![CDATA[FLV]]></category>
		<category><![CDATA[VideoDisplay]]></category>

		<guid isPermaLink="false">http://vicker.cubeforge.net/blog/?p=44</guid>
		<description><![CDATA[Don’t get it wrong… I am not leaving Flex, most of my current developments still rely on it and I am sure it will last for several more years. Working with Flex for nearly two years. I am sure I have the right choice however sometimes Flex do makes me mad. SWFLoader content can’t be [...]
Related posts:<ol>
<li><a href='http://vicker.cubeforge.net/blog/2007/09/11/munsang-college-biology-department-website-version-3-initiated/' rel='bookmark' title='Munsang College Biology Department Website version 3 始動~!'>Munsang College Biology Department Website version 3 始動~!</a></li>
<li><a href='http://vicker.cubeforge.net/blog/2009/01/07/adobe-max-sf-day-2/' rel='bookmark' title='Adobe MAX SF day 2'>Adobe MAX SF day 2</a></li>
<li><a href='http://vicker.cubeforge.net/blog/2008/12/09/adobe-max-sf-day-1/' rel='bookmark' title='Adobe MAX SF day 1'>Adobe MAX SF day 1</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Don’t get it wrong… I am not leaving Flex, most of my current developments still rely on it and I am sure it will last for several more years.</p>
<p>Working with Flex for nearly two years. I am sure I have the right choice however sometimes Flex do makes me mad.</p>
<ul>
<li>SWFLoader content can’t be unloaded completely.<br />
(How many times you try to replace a loader content but you notice the content music never gone away)</li>
<li>VideoDisplay component doesn’t play .flv correctly…</li>
<li>Not even those produced by Flash Video Encoder…</li>
<li>Non standard CSS</li>
<li>Math.floor (Math.random () * 4) + 6<br />
(Oh my god… I just want a random integer)</li>
<li>Smooth scroll List</li>
<li>Disabling Ctrl key during drag move</li>
<li>Gradient fill Container</li>
<li>Full screen Keyboard input…<br />
(I understand security… but that should be user’s responsibility… not developer’s obstacle)</li>
</ul>
<p><strong>Flex Builder related…</strong></p>
<ul>
<li>Why can’t I export my syntax coloring settings?</li>
<li>I don’t know which part I haven’t done yet… WHERE’S MY TODO!?!?</li>
<li>Auto building get set function please…</li>
</ul>
<p>To be continue…</p>
<p>Adobe… please… I love advancedDataGrid… but fix the old ones first…</p>
<p>Related posts:<ol>
<li><a href='http://vicker.cubeforge.net/blog/2007/09/11/munsang-college-biology-department-website-version-3-initiated/' rel='bookmark' title='Munsang College Biology Department Website version 3 始動~!'>Munsang College Biology Department Website version 3 始動~!</a></li>
<li><a href='http://vicker.cubeforge.net/blog/2009/01/07/adobe-max-sf-day-2/' rel='bookmark' title='Adobe MAX SF day 2'>Adobe MAX SF day 2</a></li>
<li><a href='http://vicker.cubeforge.net/blog/2008/12/09/adobe-max-sf-day-1/' rel='bookmark' title='Adobe MAX SF day 1'>Adobe MAX SF day 1</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://vicker.cubeforge.net/blog/2008/07/24/sometimes-i-hate-flex%e2%80%a6-sometimes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alternate Style Sheets</title>
		<link>http://vicker.cubeforge.net/blog/2005/11/30/alternate-style-sheets/</link>
		<comments>http://vicker.cubeforge.net/blog/2005/11/30/alternate-style-sheets/#comments</comments>
		<pubDate>Wed, 30 Nov 2005 16:42:22 +0000</pubDate>
		<dc:creator>Vicker</dc:creator>
				<category><![CDATA[Web Usability]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[W3C]]></category>

		<guid isPermaLink="false">http://vicker.cubeforge.net/blog/?p=257</guid>
		<description><![CDATA[When we designing our web site style, have we think about whether others like our style? I guess it is not possible making a style which suits everyone’s taste. So why not letting the visitor selecting his own style? That is why Alternate Style Sheets become an important function in a web site. The idea [...]
Related posts:<ol>
<li><a href='http://vicker.cubeforge.net/blog/2005/09/13/web-content-accessibility-guidelines/' rel='bookmark' title='Web Content Accessibility Guidelines'>Web Content Accessibility Guidelines</a></li>
<li><a href='http://vicker.cubeforge.net/blog/2005/11/23/aural-cascading-style-sheets-acss/' rel='bookmark' title='Aural Cascading Style Sheets (ACSS)'>Aural Cascading Style Sheets (ACSS)</a></li>
<li><a href='http://vicker.cubeforge.net/blog/2005/09/27/the-form-assembly/' rel='bookmark' title='The Form Assembly'>The Form Assembly</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>When we designing our web site style, have we think about whether others like our style? I guess it is not possible making a style which suits everyone’s taste. So why not letting the visitor selecting his own style? That is why Alternate Style Sheets become an important function in a web site.</p>
<p>The idea of alternate style sheet is that we will first prepare a few different style sheets to be the alternate. And then providing a drop down box within the web page allowing the user to choose the style he / she likes. And the preferences are stored in the cookies, so the next time he / she returns will be browsing in his / her favorites.</p>
<p>This method is not simply talking about suiting someone’s taste. It is also raising the accessibility of the web sites which is suggested by W3C. Because we can design styles which have larger fonts for the elderly, or design styles which have simpler color combinations for the people suffering color blindness.</p>
<p>Although it increases the workload designing the styles, it worths.</p>
<p>Reference:</p>
<p>Alternative Style: Working With Alternate Style Sheets. [Online]. Sowden, P. Available: http://www.alistapart.com/stories/alternate</p>
<p>Related posts:<ol>
<li><a href='http://vicker.cubeforge.net/blog/2005/09/13/web-content-accessibility-guidelines/' rel='bookmark' title='Web Content Accessibility Guidelines'>Web Content Accessibility Guidelines</a></li>
<li><a href='http://vicker.cubeforge.net/blog/2005/11/23/aural-cascading-style-sheets-acss/' rel='bookmark' title='Aural Cascading Style Sheets (ACSS)'>Aural Cascading Style Sheets (ACSS)</a></li>
<li><a href='http://vicker.cubeforge.net/blog/2005/09/27/the-form-assembly/' rel='bookmark' title='The Form Assembly'>The Form Assembly</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://vicker.cubeforge.net/blog/2005/11/30/alternate-style-sheets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aural Cascading Style Sheets (ACSS)</title>
		<link>http://vicker.cubeforge.net/blog/2005/11/23/aural-cascading-style-sheets-acss/</link>
		<comments>http://vicker.cubeforge.net/blog/2005/11/23/aural-cascading-style-sheets-acss/#comments</comments>
		<pubDate>Wed, 23 Nov 2005 01:22:14 +0000</pubDate>
		<dc:creator>Vicker</dc:creator>
				<category><![CDATA[Web Usability]]></category>
		<category><![CDATA[ACSS]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://vicker.cubeforge.net/blog/?p=243</guid>
		<description><![CDATA[Cascading Style Sheets (CSS) is widely used when developing a web page. It can be used in both layout and styling. However it is meaningless for the blinds. So are there any styles for the blinds? Aural Cascading Style Sheets (ACSS) is the answer. Actually ACSS is not a new technology. It can be viewed [...]
Related posts:<ol>
<li><a href='http://vicker.cubeforge.net/blog/2005/09/13/web-content-accessibility-guidelines/' rel='bookmark' title='Web Content Accessibility Guidelines'>Web Content Accessibility Guidelines</a></li>
<li><a href='http://vicker.cubeforge.net/blog/2005/09/27/the-form-assembly/' rel='bookmark' title='The Form Assembly'>The Form Assembly</a></li>
<li><a href='http://vicker.cubeforge.net/blog/2005/11/30/alternate-style-sheets/' rel='bookmark' title='Alternate Style Sheets'>Alternate Style Sheets</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Cascading Style Sheets (CSS) is widely used when developing a web page. It can be used in both layout and styling. However it is meaningless for the blinds. So are there any styles for the blinds?</p>
<p>Aural Cascading Style Sheets (ACSS) is the answer. Actually ACSS is not a new technology. It can be viewed as an add-on to the original CSS. The following are the commands supported by ACSS.</p>
<p>voice-family<br />
speech-rate<br />
pitch<br />
pitch-range<br />
stress<br />
richness</p>
<p>By means of these commands, the speech produced by the disables assisting browsers like JAWS that I previously mentioned can be “styled”.</p>
<p>For example the following will make the browser reading the text in a woman high pitch voice.</p>
<p>Phantom of the Opera. Arrrrrrrrrrrrrrr~~~~</p>
<p>References:</p>
<p>ACSS: Aural Style Sheets. [Online]. Burns, J. Available: http://www.htmlgoodies.com/beyond/css/article.php/3470211</p>
<p>Related posts:<ol>
<li><a href='http://vicker.cubeforge.net/blog/2005/09/13/web-content-accessibility-guidelines/' rel='bookmark' title='Web Content Accessibility Guidelines'>Web Content Accessibility Guidelines</a></li>
<li><a href='http://vicker.cubeforge.net/blog/2005/09/27/the-form-assembly/' rel='bookmark' title='The Form Assembly'>The Form Assembly</a></li>
<li><a href='http://vicker.cubeforge.net/blog/2005/11/30/alternate-style-sheets/' rel='bookmark' title='Alternate Style Sheets'>Alternate Style Sheets</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://vicker.cubeforge.net/blog/2005/11/23/aural-cascading-style-sheets-acss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Form Assembly</title>
		<link>http://vicker.cubeforge.net/blog/2005/09/27/the-form-assembly/</link>
		<comments>http://vicker.cubeforge.net/blog/2005/09/27/the-form-assembly/#comments</comments>
		<pubDate>Tue, 27 Sep 2005 23:48:34 +0000</pubDate>
		<dc:creator>Vicker</dc:creator>
				<category><![CDATA[Web Usability]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[form assembly]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://vicker.cubeforge.net/blog/?p=253</guid>
		<description><![CDATA[HTML Form, I guess anybody who written some web pages before should be familiar. It is not a really hard one actually. With some form elements like input, select, options, etc… the form already works. However is it usable and accessible? Have you done enough form validation? Have you provide enough labels for the form [...]
Related posts:<ol>
<li><a href='http://vicker.cubeforge.net/blog/2005/09/13/web-content-accessibility-guidelines/' rel='bookmark' title='Web Content Accessibility Guidelines'>Web Content Accessibility Guidelines</a></li>
<li><a href='http://vicker.cubeforge.net/blog/2005/11/15/blog-talk-2-how-to-implement-consistent-framework/' rel='bookmark' title='Blog Talk 2 &#8211; How to Implement Consistent Framework'>Blog Talk 2 &#8211; How to Implement Consistent Framework</a></li>
<li><a href='http://vicker.cubeforge.net/blog/2005/11/23/aural-cascading-style-sheets-acss/' rel='bookmark' title='Aural Cascading Style Sheets (ACSS)'>Aural Cascading Style Sheets (ACSS)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>HTML Form, I guess anybody who written some web pages before should be familiar. It is not a really hard one actually. With some form elements like input, select, options, etc… the form already works. However is it usable and accessible? Have you done enough form validation? Have you provide enough labels for the form elements?</p>
<p>Building a good HTML form is not a easy task, especially if you want to follow those standards. Googling for a while, found out this web which is great to achieve the mentioned points above. The Form Assembly (http://www.formassembly.com)</p>
<p>Same as other informational web sites, there are articles and tutorials on building the web forms. But my focus are on the three links on the left hand side of the web.</p>
<p>Form Builder</p>
<p>A web tool which will help you to build your form in a standard format. What you have to do is just filling your requirements and thats it.</p>
<p>Form Library</p>
<p>Here you can access a large number of templates with different stlye and even different language.</p>
<p>Form Garden</p>
<p>Personally I suggest this to everyone, which is a CSS form builder. You can select the styles available on the right and test it in the center. After your selection, you can simply download the CSS and use it in your own web page.</p>
<p>It is so convenient with all these handy tools and the most important thing is that we can learn from their source and design :p</p>
<p>Related posts:<ol>
<li><a href='http://vicker.cubeforge.net/blog/2005/09/13/web-content-accessibility-guidelines/' rel='bookmark' title='Web Content Accessibility Guidelines'>Web Content Accessibility Guidelines</a></li>
<li><a href='http://vicker.cubeforge.net/blog/2005/11/15/blog-talk-2-how-to-implement-consistent-framework/' rel='bookmark' title='Blog Talk 2 &#8211; How to Implement Consistent Framework'>Blog Talk 2 &#8211; How to Implement Consistent Framework</a></li>
<li><a href='http://vicker.cubeforge.net/blog/2005/11/23/aural-cascading-style-sheets-acss/' rel='bookmark' title='Aural Cascading Style Sheets (ACSS)'>Aural Cascading Style Sheets (ACSS)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://vicker.cubeforge.net/blog/2005/09/27/the-form-assembly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Content Accessibility Guidelines</title>
		<link>http://vicker.cubeforge.net/blog/2005/09/13/web-content-accessibility-guidelines/</link>
		<comments>http://vicker.cubeforge.net/blog/2005/09/13/web-content-accessibility-guidelines/#comments</comments>
		<pubDate>Tue, 13 Sep 2005 22:54:31 +0000</pubDate>
		<dc:creator>Vicker</dc:creator>
				<category><![CDATA[Web Usability]]></category>
		<category><![CDATA[Bobby]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[validation]]></category>
		<category><![CDATA[W3C]]></category>
		<category><![CDATA[WCAG]]></category>
		<category><![CDATA[WebXACT]]></category>

		<guid isPermaLink="false">http://vicker.cubeforge.net/blog/?p=219</guid>
		<description><![CDATA[Before having the first lecture there are already quite a large number of things that can be explored simply browsing Andy’s web. You may notice that there are a number of small icons on the bottom of Andy’s course web. Saying W3C XHTML, W3C CSS, W3C WCAG, BOBBY 508 and BOBBY AAA. For the first [...]
Related posts:<ol>
<li><a href='http://vicker.cubeforge.net/blog/2005/09/27/the-form-assembly/' rel='bookmark' title='The Form Assembly'>The Form Assembly</a></li>
<li><a href='http://vicker.cubeforge.net/blog/2005/11/30/alternate-style-sheets/' rel='bookmark' title='Alternate Style Sheets'>Alternate Style Sheets</a></li>
<li><a href='http://vicker.cubeforge.net/blog/2005/10/12/check-your-links/' rel='bookmark' title='Check Your Links~~!!'>Check Your Links~~!!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Before having the first lecture there are already quite a large number of things that can be explored simply browsing Andy’s web.</p>
<p>You may notice that there are a number of small icons on the bottom of Andy’s course web. Saying W3C XHTML, W3C CSS, W3C WCAG, BOBBY 508 and BOBBY AAA.</p>
<p>For the first two, I guess is quite familiar to many people. They are the standards posted by W3C. (World Wide Web Consortium) Using the validators provided by them, (HTML validator and CSS validator) anyone can check whether their web page fullfill the requirements of the standards. If it is a success, they can place this icon on their web.</p>
<p>But how about WCAG, 508 and Bobby??</p>
<p>Due to my curiosity, I have made some search on W3C. Actually WCAG stands for Web Content Accessibility Guidelines. It is a guideline which will make a website more accessible. (WCAG 1.0) Section 508 is something similar to WCAG but written in US Federal law.WCAG have a total of 3 accessibility compliance, A, AA and AAA. (where AAA is the best and of course the hardest to achieve) Although W3C do not provide any automated WCAG checker, we can still check it through WebXACT. (WebXACT) I guess the former name is Bobby but now changed. However even WebXACT can not do all the testing inside the guideline, because some of them are not coding related, e.g. color matching.</p>
<p>Although it is hard to acheive all these standards, I think as a web designer we should try our best to do at least most of these. This improves not only the speed of loading the page but also helping our visitors to browse.</p>
<p>Related posts:<ol>
<li><a href='http://vicker.cubeforge.net/blog/2005/09/27/the-form-assembly/' rel='bookmark' title='The Form Assembly'>The Form Assembly</a></li>
<li><a href='http://vicker.cubeforge.net/blog/2005/11/30/alternate-style-sheets/' rel='bookmark' title='Alternate Style Sheets'>Alternate Style Sheets</a></li>
<li><a href='http://vicker.cubeforge.net/blog/2005/10/12/check-your-links/' rel='bookmark' title='Check Your Links~~!!'>Check Your Links~~!!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://vicker.cubeforge.net/blog/2005/09/13/web-content-accessibility-guidelines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

