<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>swimming mania&#039;s Blog</title>
	<atom:link href="http://iloveswimming.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://iloveswimming.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Thu, 16 Jul 2009 15:34:17 +0000</lastBuildDate>
	<language>ko</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='iloveswimming.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>swimming mania&#039;s Blog</title>
		<link>http://iloveswimming.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://iloveswimming.wordpress.com/osd.xml" title="swimming mania&#039;s Blog" />
	<atom:link rel='hub' href='http://iloveswimming.wordpress.com/?pushpress=hub'/>
		<item>
		<title>wordpress:dynamic sub-page navigation</title>
		<link>http://iloveswimming.wordpress.com/2009/07/16/wordpressdynamic-sub-page-navigation/</link>
		<comments>http://iloveswimming.wordpress.com/2009/07/16/wordpressdynamic-sub-page-navigation/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 15:34:17 +0000</pubDate>
		<dc:creator>shl0586</dc:creator>
				<category><![CDATA[wordpress usage]]></category>

		<guid isPermaLink="false">http://iloveswimming.wordpress.com/?p=50</guid>
		<description><![CDATA[WordPress: Dynamic Sub-Page Navigation Filed as Features, Guides on July 26, 2007 11:44 am by Nathan Rice The more and more I study the WordPress architecture, the more and more convinced I become that WordPress is a great choice for use as a feature rich Content Management System (CMS). Basically, WordPress can be used, not [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iloveswimming.wordpress.com&amp;blog=8581492&amp;post=50&amp;subd=iloveswimming&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2><a title="WordPress: Dynamic Sub-Page Navigation" rel="bookmark" href="http://www.blogherald.com/2007/07/26/wordpress-dynamic-sub-page-navigation/">WordPress: Dynamic Sub-Page Navigation</a></h2>
<div>
<div>
<p>Filed as <a title="View all posts in Features" rel="category tag" href="http://www.blogherald.com/category/features/">Features</a>, <a title="View all posts in Guides" rel="category tag" href="http://www.blogherald.com/category/guides/">Guides</a> on July 26, 2007 11:44 am</div>
<div>
<p>by <a title="Posts by Nathan Rice" href="http://www.blogherald.com/author/nathanrice/">Nathan Rice</a></div>
</div>
<div>
<p>The more and more I study the WordPress architecture, the more and more convinced I become that WordPress is a great choice for use as a feature rich Content Management System (CMS). Basically, WordPress can be used, not only as a blog platform, but as software to manage the content of any website, with or without a blog. Because WP added the ability to use “Pages” to hold relatively static content, and because WP includes functions to call and display the content of those pages just about any way you can think of, all it takes is a good WordPress theme to get the job done.</p>
<p>But where WordPress lacks as a CMS is the ability to further exploit the sub-page system. Not so much in their use, but in their application to the actual website design.</p>
<p>However, <a href="http://www.webspaceworks.com/resources/wordpress/30/">this plugin</a> did wonders for people looking to take advantage of the hierarchal structure of pages and sub-pages by allowing only the “parent” pages to be displayed on the homepage. And if a “parent” page has children, and that page’s link is clicked, then the child pages will “fold” down, displaying “deeper” options (much like the features of the more mainline CMS out there).</p>
<h3>But There’s a Problem</h3>
<p>I’m not here to just give props to a cool plugin. You see, I had a client who wanted the original “parent” list across the top of the page (just under the header image) and when one of the “parent” page links was clicked, he wanted the “sub-pages” to display as a list in the sidebar. As far as I could tell, there was no way to do that with the <a href="http://www.webspaceworks.com/resources/wordpress/30/">Fold Page List</a> plugin. So, I went searching. I promise, if I could find the original website I got this from, I’d give a link. As it turns out, I can’t find it. Sorry <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>First thing to do is just list your pages. Be sure to make it top-level only!</p>
<p><strong>&lt;?php wp_list_pages(&#8216;title_li=&amp;depth=1&#8242;); ?&gt;</strong></p>
<p>Then, I used the code I found (with a few modifications, I’m sure):<br />
<strong><br />
&lt;?php<br />
global $wp_query;</strong></p>
<p>if( empty($wp_query-&gt;post-&gt;post_parent) ) {<br />
$parent = $wp_query-&gt;post-&gt;ID;<br />
} else {<br />
$parent = $wp_query-&gt;post-&gt;post_parent;<br />
} ?&gt;<br />
&lt;?php if(wp_list_pages(&#8220;title_li=&amp;child_of=$parent&amp;echo=0&#8243; )): ?&gt;<br />
&lt;div id=&#8221;submenu&#8221;&gt;<br />
&lt;ul&gt;<br />
&lt;?php wp_list_pages(&#8220;title_li=&amp;child_of=$parent&#8221; ); ?&gt;<br />
&lt;/ul&gt;<br />
&lt;/div&gt;<br />
&lt;?php endif; ?&gt;</p>
<p>Without getting too technical, I’ll explain roughly what all that means.</p>
<p><strong>if( empty($wp_query-&gt;post-&gt;post_parent) ) {<br />
$parent = $wp_query-&gt;post-&gt;ID;<br />
} else {<br />
$parent = $wp_query-&gt;post-&gt;post_parent;<br />
}</strong></p>
<p>This code checks to see if the current page (the active page) as a parent. If it does NOT have a parent … it assigns the current page ID as the “parent”. If it DOES have a parent, it assigns the parent ID as the “parent”. The reason this is necessary is for top-level parents. If we simply used the parent ID to assign the “parent”, then if a top-level parent was active, the “parent” variable would be empty and we wouldn’t get our sub-page list.<br />
<strong><br />
&lt;?php if(wp_list_pages(&#8220;title_li=&amp;child_of=$parent&amp;echo=0&#8243; )): ?&gt;<br />
&lt;div id=&#8221;submenu&#8221;&gt;<br />
&lt;ul&gt;<br />
&lt;?php wp_list_pages(&#8220;title_li=&amp;child_of=$parent&#8221; ); ?&gt;<br />
&lt;/ul&gt;<br />
&lt;/div&gt;<br />
&lt;?php endif; ?&gt;<br />
</strong></p>
<p>This last part is pretty simple. All it checks for is IF there are any sub-pages (in a very rudimentary way). If it does have sub-pages, then it lists them (along with a title and some div wrappers for style).</p>
<h3>One Limitation</h3>
<p>I didn’t spend too much time doing research on this, but as far as I can tell, this only works 2 levels deep (top-level and 2nd level). If you have 3 levels of sub-pages, this won’t work (or at least won’t work like it’s supposed to). Sorry, but all I needed was 2 levels, so that’s all I developed it for <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<h3>Download the Source</h3>
<p><a href="http://www.blogherald.com/wp-content/uploads/2007/07/sub-page.txt">Click Here to download the source for this script</a></p>
<p>So, if you are looking for a quick and dirty way to use WordPress as a CMS, this little bit of code can go a long way. I’ve used it several times since the time I developed it, and I plan on using it many times in the future!</p>
<p>Next week, I’m writing a tutorial on how to do the same thing we did here, but with categories and sub-categories. Don’t miss it!</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iloveswimming.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iloveswimming.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iloveswimming.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iloveswimming.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iloveswimming.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iloveswimming.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iloveswimming.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iloveswimming.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iloveswimming.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iloveswimming.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iloveswimming.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iloveswimming.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iloveswimming.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iloveswimming.wordpress.com/50/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iloveswimming.wordpress.com&amp;blog=8581492&amp;post=50&amp;subd=iloveswimming&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iloveswimming.wordpress.com/2009/07/16/wordpressdynamic-sub-page-navigation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7c18398b82ea66c60a3ef18c2d787cb8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shl0586</media:title>
		</media:content>
	</item>
		<item>
		<title>UI개발자를 위한 북마크</title>
		<link>http://iloveswimming.wordpress.com/2009/07/16/ui%ea%b0%9c%eb%b0%9c%ec%9e%90%eb%a5%bc-%ec%9c%84%ed%95%9c-%eb%b6%81%eb%a7%88%ed%81%ac/</link>
		<comments>http://iloveswimming.wordpress.com/2009/07/16/ui%ea%b0%9c%eb%b0%9c%ec%9e%90%eb%a5%bc-%ec%9c%84%ed%95%9c-%eb%b6%81%eb%a7%88%ed%81%ac/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 15:21:14 +0000</pubDate>
		<dc:creator>shl0586</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://iloveswimming.wordpress.com/?p=48</guid>
		<description><![CDATA[UI 개발자를 위한 북마크 NARADESIGN 목차 [숨기기]   4.1 웹 표준 4.2 웹 접근성 4.3 IT Trends 4.4 User Experience 9.1 웹 브라우저들 9.2 웹 브라우저 시뮬레이터 9.3 웹 브라우저 테스트 9.4 웹 브라우저 호환성 문제 9.5 웹 브라우저 확장 13.1 사진 13.2 아이콘 14.1 지침 14.2 색 17.1 CSS Framework 17.2 CSS Reference 17.3 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iloveswimming.wordpress.com&amp;blog=8581492&amp;post=48&amp;subd=iloveswimming&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="mainContent">
<h1>UI 개발자를 위한 북마크</h1>
<h3 id="siteSub">NARADESIGN</h3>
<p><!-- start content --></p>
<table id="toc" border="0" summary="목차">
<tbody>
<tr>
<td>
<div id="toctitle">
<h2>목차</h2>
<p><span>[<a id="togglelink" href="toggleToc()">숨기기</a>]</span></div>
<ul>
<li> 
<ul><a href="http://iloveswimming.wordpress.com/wp-admin/#.EC.9B.B9_.ED.91.9C.EC.A4.80"><span>4.1</span> <span>웹 표준</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#.EC.9B.B9_.EC.A0.91.EA.B7.BC.EC.84.B1"><span>4.2</span> <span>웹 접근성</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#IT_Trends"><span>4.3</span> <span>IT Trends</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#User_Experience"><span>4.4</span> <span>User Experience</span></a></ul>
<ul><a href="http://iloveswimming.wordpress.com/wp-admin/#.EC.9B.B9_.EB.B8.8C.EB.9D.BC.EC.9A.B0.EC.A0.80.EB.93.A4"><span>9.1</span> <span>웹 브라우저들</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#.EC.9B.B9_.EB.B8.8C.EB.9D.BC.EC.9A.B0.EC.A0.80_.EC.8B.9C.EB.AE.AC.EB.A0.88.EC.9D.B4.ED.84.B0"><span>9.2</span> <span>웹 브라우저 시뮬레이터</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#.EC.9B.B9_.EB.B8.8C.EB.9D.BC.EC.9A.B0.EC.A0.80_.ED.85.8C.EC.8A.A4.ED.8A.B8"><span>9.3</span> <span>웹 브라우저 테스트</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#.EC.9B.B9_.EB.B8.8C.EB.9D.BC.EC.9A.B0.EC.A0.80_.ED.98.B8.ED.99.98.EC.84.B1_.EB.AC.B8.EC.A0.9C"><span>9.4</span> <span>웹 브라우저 호환성 문제</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#.EC.9B.B9_.EB.B8.8C.EB.9D.BC.EC.9A.B0.EC.A0.80_.ED.99.95.EC.9E.A5"><span>9.5</span> <span>웹 브라우저 확장</span></a></ul>
<ul><a href="http://iloveswimming.wordpress.com/wp-admin/#.EC.82.AC.EC.A7.84"><span>13.1</span> <span>사진</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#.EC.95.84.EC.9D.B4.EC.BD.98"><span>13.2</span> <span>아이콘</span></a></ul>
<ul><a href="http://iloveswimming.wordpress.com/wp-admin/#.EC.A7.80.EC.B9.A8"><span>14.1</span> <span>지침</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#.EC.83.89"><span>14.2</span> <span>색</span></a></ul>
<ul><a href="http://iloveswimming.wordpress.com/wp-admin/#CSS_Framework"><span>17.1</span> <span>CSS Framework</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#CSS_Reference"><span>17.2</span> <span>CSS Reference</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#CSS_Standards"><span>17.3</span> <span>CSS Standards</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#CSS_Vendor_Extensions"><span>17.4</span> <span>CSS Vendor Extensions</span></a></ul>
</li>
<p><a href="http://iloveswimming.wordpress.com/wp-admin/#.EB.89.B4.EC.8A.A4"><span>1</span> <span>뉴스</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#.EB.93.9C.EB.A6.BC.EC.9C.84.EB.B2.84"><span>2</span> <span>드림위버</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#.EB.AA.A8.EB.B0.94.EC.9D.BC"><span>3</span> <span>모바일</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#.EB.B8.94.EB.A1.9C.EA.B7.B8"><span>4</span> <span>블로그</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#.EB.B8.94.EB.A1.9C.EA.B7.B8_.ED.97.88.EB.B8.8C"><span>5</span> <span>블로그 허브</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#.EC.82.AC.EC.9A.A9.EC.9E.90_.EB.A7.9E.EC.B6.A4.ED.98.95_.EC.9B.B9_.EC.84.9C.EB.B9.84.EC.8A.A4"><span>6</span> <span>사용자 맞춤형 웹 서비스</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#.EC.82.AC.EC.A0.84"><span>7</span> <span>사전</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#.EC.9B.B9_.EB.94.94.EC.9E.90.EC.9D.B8"><span>8</span> <span>웹 디자인</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#.EC.9B.B9_.EB.B8.8C.EB.9D.BC.EC.9A.B0.EC.A0.80"><span>9</span> <span>웹 브라우저</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#.EC.9B.B9_.EC.82.AC.EC.9A.A9.EC.84.B1"><span>10</span> <span>웹 사용성</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#.EC.9B.B9_.EC.84.B1.EB.8A.A5_.EB.B6.84.EC.84.9D"><span>11</span> <span>웹 성능 분석</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#.EC.9B.B9_.EC.96.B4.ED.94.8C.EB.A6.AC.EC.BC.80.EC.9D.B4.EC.85.98"><span>12</span> <span>웹 어플리케이션</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#.EC.9B.B9_.EC.9D.B4.EB.AF.B8.EC.A7.80_.EA.B2.80.EC.83.89"><span>13</span> <span>웹 이미지 검색</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#.EC.9B.B9_.EC.A0.91.EA.B7.BC.EC.84.B1_2"><span>14</span> <span>웹 접근성</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#.EC.9B.B9_.ED.91.9C.EC.A4.80_2"><span>15</span> <span>웹 표준</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#.ED.86.B5.EA.B3.84"><span>16</span> <span>통계</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#CSS"><span>17</span> <span>CSS</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#Flash"><span>18</span> <span>Flash</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#Fonts"><span>19</span> <span>Fonts</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#HTML.2FXHTML"><span>20</span> <span>HTML/XHTML</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#Javascript"><span>21</span> <span>Javascript</span></a> <a href="http://iloveswimming.wordpress.com/wp-admin/#User_Interface_.EA.B0.9C.EB.B0.9C"><span>22</span> <span>User Interface 개발</span></a></ul>
</td>
</tr>
</tbody>
</table>
<p><a name=".EB.89.B4.EC.8A.A4"></a></p>
<h2>뉴스</h2>
<ul>
<li>디지털타임즈 &#8211; <a title="http://www.dt.co.kr/" rel="nofollow" href="http://www.dt.co.kr/">http://www.dt.co.kr/</a></li>
<li>아이뉴스24 &#8211; <a title="http://www.inews24.com/" rel="nofollow" href="http://www.inews24.com/">http://www.inews24.com/</a></li>
<li>전자신문 &#8211; <a title="http://www.etnews.co.kr/" rel="nofollow" href="http://www.etnews.co.kr/">http://www.etnews.co.kr/</a></li>
<li>TED 한국어 - <a title="http://www.ted.com/index.php/translate/languages/kor" rel="nofollow" href="http://www.ted.com/index.php/translate/languages/kor">http://www.ted.com/index.php/translate/languages/kor</a> 지구촌 명사들의 프리젠테이션을 볼 수 있다.</li>
<li>ZDNet &#8211; <a title="http://zdnet.co.kr/" rel="nofollow" href="http://zdnet.co.kr/">http://zdnet.co.kr/</a></li>
</ul>
<p><a name=".EB.93.9C.EB.A6.BC.EC.9C.84.EB.B2.84"></a></p>
<h2>드림위버</h2>
<ul>
<li>드림위버를 이용한 웹 표준 코딩 가이드 &#8211; <a title="http://naradesign.net/open_content/lecture/DW&amp;CSS/" rel="nofollow" href="http://naradesign.net/open_content/lecture/DW&amp;CSS/">http://naradesign.net/open_content/lecture/DW&amp;CSS/</a></li>
<li>드림위버 CS4 한글 사용자 메뉴얼 - <a title="http://help.adobe.com/ko_KR/Dreamweaver/10.0_Using/" rel="nofollow" href="http://help.adobe.com/ko_KR/Dreamweaver/10.0_Using/">http://help.adobe.com/ko_KR/Dreamweaver/10.0_Using/</a></li>
<li>드림위버 CS3 한글 사용자 메뉴얼 &#8211; <a title="http://livedocs.adobe.com/ko_KR/Dreamweaver/9.0/" rel="nofollow" href="http://livedocs.adobe.com/ko_KR/Dreamweaver/9.0/">http://livedocs.adobe.com/ko_KR/Dreamweaver/9.0/</a></li>
<li>드림위버 8 한글 도움말 &#8211; <a title="http://livedocs.adobe.com/dreamweaver/8_kr/using/wwhelp/wwhimpl/js/html/wwhelp.htm" rel="nofollow" href="http://livedocs.adobe.com/dreamweaver/8_kr/using/wwhelp/wwhimpl/js/html/wwhelp.htm">http://livedocs.adobe.com/dreamweaver/8_kr/using/wwhelp/wwhimpl/js/html/wwhelp.htm</a></li>
<li>딸치와 함께하는 드림위버 &#8211; <a title="http://ddalchi.co.kr/" rel="nofollow" href="http://ddalchi.co.kr/">http://ddalchi.co.kr/</a></li>
</ul>
<p><a name=".EB.AA.A8.EB.B0.94.EC.9D.BC"></a></p>
<h2>모바일</h2>
<ul>
<li>모바일 웹 모범사례 &#8211; <a title="http://www.w3c.or.kr/Translation/mwbp_flip_cards/" rel="nofollow" href="http://www.w3c.or.kr/Translation/mwbp_flip_cards/">http://www.w3c.or.kr/Translation/mwbp_flip_cards/</a> W3C에서 권고하는 모바일 웹 저작지침</li>
<li>모바일 컨텐츠 이야기 &#8211; <a title="http://www.mobizen.pe.kr/" rel="nofollow" href="http://www.mobizen.pe.kr/">http://www.mobizen.pe.kr/</a></li>
<li>별주부뎐 &#8211; <a title="http://hollobit.tistory.com/" rel="nofollow" href="http://hollobit.tistory.com/">http://hollobit.tistory.com/</a></li>
<li>iPhone Accessibility &#8211; <a title="http://www.apple.com/accessibility/iphone/index.html" rel="nofollow" href="http://www.apple.com/accessibility/iphone/index.html">http://www.apple.com/accessibility/iphone/index.html</a></li>
<li>까칠한 Mobile 2.0 &#8211; <a title="http://mobile2.tistory.com/" rel="nofollow" href="http://mobile2.tistory.com/">http://mobile2.tistory.com/</a></li>
<li>모바일OK &#8211; <a title="http://mobileok.kr/" rel="nofollow" href="http://mobileok.kr/">http://mobileok.kr/</a></li>
<li>Mobile Web 2.0 Forum &#8211; <a title="http://www.mw2.or.kr/" rel="nofollow" href="http://www.mw2.or.kr/">http://www.mw2.or.kr/</a></li>
<li>K모바일 &#8211; <a title="http://www.kmobile.co.kr/" rel="nofollow" href="http://www.kmobile.co.kr/">http://www.kmobile.co.kr/</a></li>
<li>Mobile Tests &#8211; <a title="http://quirksmode.org/m/" rel="nofollow" href="http://quirksmode.org/m/">http://quirksmode.org/m/</a>  모바일 UI 개발과 관련된 여러가지 테스트들.</li>
</ul>
<p><a name=".EB.B8.94.EB.A1.9C.EA.B7.B8"></a></p>
<h2>블로그</h2>
<p><a name=".EC.9B.B9_.ED.91.9C.EC.A4.80"></a></p>
<h3>웹 표준</h3>
<ul>
<li>김군우 &#8211; <a title="http://www.miya.pe.kr/" rel="nofollow" href="http://www.miya.pe.kr/">http://www.miya.pe.kr/</a></li>
<li>김대석 &#8211; <a title="http://nmindplus.com/" rel="nofollow" href="http://nmindplus.com/">http://nmindplus.com/</a></li>
<li>김요한 &#8211; <a title="http://hiphapis.net/" rel="nofollow" href="http://hiphapis.net/">http://hiphapis.net/</a></li>
<li>나인환 &#8211; <a title="http://na93008.openhaja.com/blog/" rel="nofollow" href="http://na93008.openhaja.com/blog/">http://na93008.openhaja.com/blog/</a></li>
<li>장성민 &#8211; <a title="http://www.jangkunblog.com/" rel="nofollow" href="http://www.jangkunblog.com/">http://www.jangkunblog.com/</a></li>
<li>조현진 &#8211; <a title="http://resistan.com/" rel="nofollow" href="http://resistan.com/">http://resistan.com/</a></li>
<li>신현석 &#8211; <a title="http://hyeonseok.com/" rel="nofollow" href="http://hyeonseok.com/">http://hyeonseok.com/</a></li>
<li>연홍석 &#8211; <a title="http://blog.wystan.net/" rel="nofollow" href="http://blog.wystan.net/">http://blog.wystan.net/</a></li>
<li>윤좌진 &#8211; <a title="http://boochim.net/" rel="nofollow" href="http://boochim.net/">http://boochim.net/</a></li>
<li>일몰 &#8211; <a title="http://ilmol.com/" rel="nofollow" href="http://ilmol.com/">http://ilmol.com/</a></li>
<li>장지윤 &#8211; <a title="http://www.simplething.net/" rel="nofollow" href="http://www.simplething.net/">http://www.simplething.net/</a></li>
<li>정찬명 &#8211; <a title="http://naradesign.net/" rel="nofollow" href="http://naradesign.net/">http://naradesign.net/</a></li>
<li>조훈 &#8211; <a title="http://hooney.net/" rel="nofollow" href="http://hooney.net/">http://hooney.net/</a></li>
<li>추지호 &#8211; <a title="http://www.pageoff.net/" rel="nofollow" href="http://www.pageoff.net/">http://www.pageoff.net/</a></li>
<li>홍윤표 &#8211; <a title="http://mydeute.com/" rel="nofollow" href="http://mydeute.com/">http://mydeute.com/</a></li>
<li>김일규 &#8211; <a title="http://www.hiweb.kr/" rel="nofollow" href="http://www.hiweb.kr/">http://www.hiweb.kr/</a></li>
</ul>
<p><a name=".EC.9B.B9_.EC.A0.91.EA.B7.BC.EC.84.B1"></a></p>
<h3>웹 접근성</h3>
<ul>
<li>백남중 &#8211; <a title="http://njpaiks.egloos.com/" rel="nofollow" href="http://njpaiks.egloos.com/">http://njpaiks.egloos.com/</a></li>
<li>신승식 &#8211; <a title="http://gregshin.pe.kr/" rel="nofollow" href="http://gregshin.pe.kr/">http://gregshin.pe.kr/</a></li>
<li>현준호 &#8211; <a title="http://jhyun.wordpress.com/" rel="nofollow" href="http://jhyun.wordpress.com/">http://jhyun.wordpress.com/</a></li>
</ul>
<p><a name="IT_Trends"></a></p>
<h3>IT Trends</h3>
<ul>
<li>윤석찬 &#8211; <a title="http://channy.creation.net/" rel="nofollow" href="http://channy.creation.net/">http://channy.creation.net/</a></li>
<li>애자일 이야기 &#8211; <a title="http://agile.egloos.com/" rel="nofollow" href="http://agile.egloos.com/">http://agile.egloos.com/</a></li>
<li>Talk about Software with hani &#8211; <a title="http://www.talk-with-hani.com/" rel="nofollow" href="http://www.talk-with-hani.com/">http://www.talk-with-hani.com/</a></li>
</ul>
<p><a name="User_Experience"></a></p>
<h3>User Experience</h3>
<ul>
<li>dobiho &#8211; <a title="http://dobiho.com/" rel="nofollow" href="http://dobiho.com/">http://dobiho.com/</a></li>
<li>Empathic notes - <a title="http://blog.naver.com/dakitani/" rel="nofollow" href="http://blog.naver.com/dakitani/">http://blog.naver.com/dakitani/</a></li>
<li>Experience Design &#8211; <a title="http://exign.net/" rel="nofollow" href="http://exign.net/">http://exign.net/</a></li>
<li>UX Cosmos - <a title="http://uxcosmos.tistory.com/" rel="nofollow" href="http://uxcosmos.tistory.com/">http://uxcosmos.tistory.com/</a></li>
<li>UX Factory &#8211; <a title="http://www.uxfactory.com/" rel="nofollow" href="http://www.uxfactory.com/">http://www.uxfactory.com/</a></li>
<li>UXlog &#8211; <a title="http://uxlog.net/" rel="nofollow" href="http://uxlog.net/">http://uxlog.net/</a></li>
<li>√ MIRiyA&#8217;s AstraLog &#8211; <a title="http://blog.daum.net/miriya/" rel="nofollow" href="http://blog.daum.net/miriya/">http://blog.daum.net/miriya/</a></li>
</ul>
<p><a name=".EB.B8.94.EB.A1.9C.EA.B7.B8_.ED.97.88.EB.B8.8C"></a></p>
<h2>블로그 허브</h2>
<ul>
<li>나루 &#8211; <a title="http://www.naaroo.com/" rel="nofollow" href="http://www.naaroo.com/">http://www.naaroo.com/</a> 블로그 전문 검색.</li>
<li>올블로그 &#8211; <a title="http://allblog.net/" rel="nofollow" href="http://allblog.net/">http://allblog.net/</a> 메타 블로그.</li>
<li>Daum DNA &gt; Lens &#8211; <a title="http://dna.daum.net/lens/" rel="nofollow" href="http://dna.daum.net/lens/">http://dna.daum.net/lens/</a> 다음 DNA Lab 에서 추천하는 IT 관련 포스트.</li>
<li>Standard Magazine RSS Feed &#8211; <a title="http://planet.standardmag.org/" rel="nofollow" href="http://planet.standardmag.org/">http://planet.standardmag.org/</a> UI/UX 관련 포스팅을 수집.</li>
</ul>
<p><a name=".EC.82.AC.EC.9A.A9.EC.9E.90_.EB.A7.9E.EC.B6.A4.ED.98.95_.EC.9B.B9_.EC.84.9C.EB.B9.84.EC.8A.A4"></a></p>
<h2>사용자 맞춤형 웹 서비스</h2>
<ul>
<li>위자드닷컴 &#8211; <a title="http://wzd.com/" rel="nofollow" href="http://wzd.com/">http://wzd.com/</a> 사용자 맞춤형 인터넷 시작페이지.</li>
<li>Netvibes &#8211; <a title="http://www.netvibes.com/" rel="nofollow" href="http://www.netvibes.com/">http://www.netvibes.com/</a> 사용자 맞춤형 인터넷 시작페이지.</li>
<li>Remember The Milk &#8211; <a title="http://www.rememberthemilk.com/" rel="nofollow" href="http://www.rememberthemilk.com/">http://www.rememberthemilk.com/</a> 할일 목록 관리 서비스.</li>
<li>Webwag &#8211; <a title="http://www.webwag.com/" rel="nofollow" href="http://www.webwag.com/">http://www.webwag.com/</a> 사용자 맞춤형 인터넷 시작페이지.</li>
</ul>
<p><a name=".EC.82.AC.EC.A0.84"></a></p>
<h2>사전</h2>
<ul>
<li>영문 표기사전 &#8211; <a title="http://englishname.seoul.go.kr/" rel="nofollow" href="http://englishname.seoul.go.kr/">http://englishname.seoul.go.kr/</a> 한글의 영문 표기안내.</li>
<li>우리말 다듬기 &#8211; <a title="http://www.malteo.net/" rel="nofollow" href="http://www.malteo.net/">http://www.malteo.net/</a> 들여온 말을 순 우리말로 정화시키는 곳.</li>
<li>위키백과(글로벌) &#8211; <a title="http://wikipedia.org/" rel="nofollow" href="http://wikipedia.org/">http://wikipedia.org/</a></li>
<li>위키백과(한국) &#8211; <a title="http://ko.wikipedia.org/wiki/" rel="nofollow" href="http://ko.wikipedia.org/wiki/">http://ko.wikipedia.org/wiki/</a></li>
<li>MS 언어포털 &#8211; <a title="http://www.microsoft.com/language/ko/kr/default.mspx" rel="nofollow" href="http://www.microsoft.com/language/ko/kr/default.mspx">http://www.microsoft.com/language/ko/kr/default.mspx</a> MS에서 사용된 용어의 한글화</li>
</ul>
<p><a name=".EC.9B.B9_.EB.94.94.EC.9E.90.EC.9D.B8"></a></p>
<h2>웹 디자인</h2>
<ul>
<li>디비컷 &#8211; <a title="http://dbcut.com/" rel="nofollow" href="http://dbcut.com/">http://dbcut.com/</a> 최근 런칭된 국내 웹사이트 정보.</li>
<li>디자인 정글 &#8211; <a title="http://jungle.co.kr/" rel="nofollow" href="http://jungle.co.kr/">http://jungle.co.kr/</a></li>
<li>웹 어워드 코리아 &#8211; <a title="http://www.webaward.co.kr/" rel="nofollow" href="http://www.webaward.co.kr/">http://www.webaward.co.kr/</a> 매년 최고의 웹 사이트를 선정하는 컨퍼런스.</li>
<li>한국색채연구소 &#8211; <a title="http://www.kcri.or.kr/" rel="nofollow" href="http://www.kcri.or.kr/">http://www.kcri.or.kr/</a></li>
<li>Adobe &#8211; <a title="http://www.adobe.com/kr/" rel="nofollow" href="http://www.adobe.com/kr/">http://www.adobe.com/kr/</a></li>
<li>5DAY &#8211; <a title="http://5day.co.kr/" rel="nofollow" href="http://5day.co.kr/">http://5day.co.kr/</a> 최근 런칭된 국내 웹사이트 정보.</li>
</ul>
<p><a name=".EC.9B.B9_.EB.B8.8C.EB.9D.BC.EC.9A.B0.EC.A0.80"></a></p>
<h2>웹 브라우저</h2>
<p><a name=".EC.9B.B9_.EB.B8.8C.EB.9D.BC.EC.9A.B0.EC.A0.80.EB.93.A4"></a></p>
<h3>웹 브라우저들</h3>
<ul>
<li>인프라웨어 &#8211; <a title="http://www.infraware.co.kr/" rel="nofollow" href="http://www.infraware.co.kr/">http://www.infraware.co.kr/</a> 한국의 모바일 웹 브라우저 제작사.</li>
<li>Apple Safari &#8211; <a title="http://www.apple.com/kr/safari/download/" rel="nofollow" href="http://www.apple.com/kr/safari/download/">http://www.apple.com/kr/safari/download/</a></li>
<li>Google Chrome &#8211; <a title="http://www.google.com/chrome" rel="nofollow" href="http://www.google.com/chrome">http://www.google.com/chrome</a></li>
<li>Mozilla Firefox &#8211; <a title="http://www.mozilla.or.kr/ko/firefox/" rel="nofollow" href="http://www.mozilla.or.kr/ko/firefox/">http://www.mozilla.or.kr/ko/firefox/</a></li>
<li>Microsoft Internet Explorer &#8211; <a title="http://www.microsoft.com/windows/products/winfamily/ie/default.mspx" rel="nofollow" href="http://www.microsoft.com/windows/products/winfamily/ie/default.mspx">http://www.microsoft.com/windows/products/winfamily/ie/default.mspx</a></li>
<li>Microsoft IE8 팀 블로그 &#8211; <a title="http://blog.msdn.com/ie8kr/" rel="nofollow" href="http://blog.msdn.com/ie8kr/">http://blog.msdn.com/ie8kr/</a> Microsoft IE 블로그 포스트 가운데 IE8 관련 소식만 한국어로 번역되어 있다.</li>
<li>Opera Software Opera &#8211; <a title="http://www.opera.com/" rel="nofollow" href="http://www.opera.com/">http://www.opera.com/</a></li>
</ul>
<p><a name=".EC.9B.B9_.EB.B8.8C.EB.9D.BC.EC.9A.B0.EC.A0.80_.EC.8B.9C.EB.AE.AC.EB.A0.88.EC.9D.B4.ED.84.B0"></a></p>
<h3>웹 브라우저 시뮬레이터</h3>
<ul>
<li>Browsershots &#8211; <a title="http://browsershots.org/" rel="nofollow" href="http://browsershots.org/">http://browsershots.org/</a> 현존하는 10 여종의 웹 브라우저에 대한 Simulator 테스트. 브라우저 선택 옵션에 모두 체크해도 한번에 4~5개 정도 밖에 Simulation 되지 않으며 시간이 오래 걸리고 추가 테스트를 진행 하는 경우 기존의 스크린샷이 사라지므로 스크린샷은 PC에 저장하는 것을 권함.</li>
<li>Internet Explorer Collection &#8211; <a title="http://finalbuilds.edskes.net/iecollection.htm" rel="nofollow" href="http://finalbuilds.edskes.net/iecollection.htm">http://finalbuilds.edskes.net/iecollection.htm</a> 모든 버전의 IE를 스텐드얼론 형식으로 사용할 수 있다. 개발자용 IE툴바를 사용할 수 있는 것이 장점이나 정식으로 설치된 IE 브라우저에 다양한 버그를 유발하는 단점이 있어 권장하지 않음.</li>
<li>iPhone/iPod Touch Simulator &#8211; <a title="http://testiphone.com/" rel="nofollow" href="http://testiphone.com/">http://testiphone.com/</a></li>
<li>Multiful IE &#8211; <a title="http://tredosoft.com/Multiple_IE" rel="nofollow" href="http://tredosoft.com/Multiple_IE">http://tredosoft.com/Multiple_IE</a> IE 3~6 브라우저에 대한 렌더링 툴.</li>
<li>Opera Mini Simulator &#8211; <a title="http://www.operamini.com/demo/" rel="nofollow" href="http://www.operamini.com/demo/">http://www.operamini.com/demo/</a> Mobile 전용 웹 브라우저 Opera Mini 의 렌더링 테스트.</li>
<li>Safari Simulator(BrowsrCamp) &#8211; <a title="http://www.browsrcamp.com/" rel="nofollow" href="http://www.browsrcamp.com/">http://www.browsrcamp.com/</a> Mac OS 전용 웹 브라우저 Safari 의 렌더링 테스트.</li>
<li>Xenocode Browser Sandbox &#8211; <a title="http://www.xenocode.com/browsers/" rel="nofollow" href="http://www.xenocode.com/browsers/">http://www.xenocode.com/browsers/</a> IE 6~8, FF 2~3, SF, OP, CR 브라우저를 실행파일을 이용하여 설치 없이 테스트 할 수 있다.</li>
</ul>
<p><a name=".EC.9B.B9_.EB.B8.8C.EB.9D.BC.EC.9A.B0.EC.A0.80_.ED.85.8C.EC.8A.A4.ED.8A.B8"></a></p>
<h3>웹 브라우저 테스트</h3>
<ul>
<li>Acid2 Test &#8211; <a title="http://acid2.acidtests.org/" rel="nofollow" href="http://acid2.acidtests.org/">http://acid2.acidtests.org/</a> 웹 브라우저의 HTML/CSS/PNG 표준 지원 테스트.</li>
<li>Acid3 Test &#8211; <a title="http://acid3.acidtests.org/" rel="nofollow" href="http://acid3.acidtests.org/">http://acid3.acidtests.org/</a> 웹 브라우저의 DOM/HTML/CSS/SVG 표준 지원 테스트.</li>
<li>Working Draft CSS3 Selector Test &#8211; <a title="http://www.css3.info/selectors-test/" rel="nofollow" href="http://www.css3.info/selectors-test/">http://www.css3.info/selectors-test/</a></li>
</ul>
<p><a name=".EC.9B.B9_.EB.B8.8C.EB.9D.BC.EC.9A.B0.EC.A0.80_.ED.98.B8.ED.99.98.EC.84.B1_.EB.AC.B8.EC.A0.9C"></a></p>
<h3>웹 브라우저 호환성 문제</h3>
<ul>
<li>개발자 좀 살려주세요! &#8211; <a title="http://resistan.com/savethedeveloper/" rel="nofollow" href="http://resistan.com/savethedeveloper/">http://resistan.com/savethedeveloper/</a> IE 6 업그레이드 캠페인.</li>
<li>웹 브라우저의 성능 비교 실험 &#8211; <a title="http://www.howtocreate.co.uk/browserSpeed.html" rel="nofollow" href="http://www.howtocreate.co.uk/browserSpeed.html">http://www.howtocreate.co.uk/browserSpeed.html</a></li>
<li>웹 브라우저의 종류 &#8211; <a title="http://en.wikipedia.org/wiki/List_of_web_browsers" rel="nofollow" href="http://en.wikipedia.org/wiki/List_of_web_browsers">http://en.wikipedia.org/wiki/List_of_web_browsers</a></li>
<li>웹 브라우저 점유율 통계 &#8211; <a title="http://en.wikipedia.org/wiki/Usage_share_of_web_browsers" rel="nofollow" href="http://en.wikipedia.org/wiki/Usage_share_of_web_browsers">http://en.wikipedia.org/wiki/Usage_share_of_web_browsers</a></li>
<li>DTD에 대응하는 웹 브라우저의 모드(Quirks &amp; Strict) 전환 표 &#8211; <a title="http://hsivonen.iki.fi/doctype/" rel="nofollow" href="http://hsivonen.iki.fi/doctype/">http://hsivonen.iki.fi/doctype/</a></li>
<li>Position Is Everything &#8211; <a title="http://www.positioniseverything.net/" rel="nofollow" href="http://www.positioniseverything.net/">http://www.positioniseverything.net/</a> IE의 버그 목록 수집.</li>
<li>Quirks Mode &amp; Strict Mode &#8211; <a title="http://www.quirksmode.org/css/quirksmode.html" rel="nofollow" href="http://www.quirksmode.org/css/quirksmode.html">http://www.quirksmode.org/css/quirksmode.html</a> Quirks Mode에 대한 가이드.</li>
<li>Web Devout &#8211; <a title="http://www.webdevout.net/" rel="nofollow" href="http://www.webdevout.net/">http://www.webdevout.net/</a> 주요 웹 브라우저에 대한 표준지원 현황.</li>
<li>When can I use&#8230; - <a title="http://a.deveria.com/caniuse/" rel="nofollow" href="http://a.deveria.com/caniuse/">http://a.deveria.com/caniuse/</a> 주요 웹 브라우저에 대한 표준지원 현황. 초안 포함.</li>
</ul>
<p><a name=".EC.9B.B9_.EB.B8.8C.EB.9D.BC.EC.9A.B0.EC.A0.80_.ED.99.95.EC.9E.A5"></a></p>
<h3>웹 브라우저 확장</h3>
<ul>
<li>Mozilla Firefox &gt; Firebug &#8211; <a title="https://addons.mozilla.org/en-US/firefox/addon/1843" rel="nofollow" href="https://addons.mozilla.org/en-US/firefox/addon/1843">https://addons.mozilla.org/en-US/firefox/addon/1843</a> Firefox 브라우저의 웹 개발자 디버깅 툴.</li>
<li>Mozilla Firefox &gt; Pencil Project &#8211; <a title="http://www.evolus.vn/Pencil/" rel="nofollow" href="http://www.evolus.vn/Pencil/">http://www.evolus.vn/Pencil/</a> 프로토타이핑 도구.</li>
<li>Microsoft Internet Explorer Developer Toolbar &#8211; <a title="http://www.microsoft.com/downloadS/details.aspx?familyid=E59C3964-672D-4511-BB3E-2D5E1DB91038&amp;displaylang=en" rel="nofollow" href="http://www.microsoft.com/downloadS/details.aspx?familyid=E59C3964-672D-4511-BB3E-2D5E1DB91038&amp;displaylang=en">http://www.microsoft.com/downloadS/details.aspx?familyid=E59C3964-672D-4511-BB3E-2D5E1DB91038&amp;displaylang=en</a> IE 6~7 브라우저의 웹 개발자 디버깅 툴.</li>
<li>Opera Dragonfly &#8211; <a title="http://www.opera.com/products/dragonfly/" rel="nofollow" href="http://www.opera.com/products/dragonfly/">http://www.opera.com/products/dragonfly/</a> Opera 브라우저의 웹 개발자 디버깅 툴.</li>
<li>WebSniper &#8211; <a title="http://freeutil.net/board/?document_srl=150&amp;mid=pds_freeutils&amp;sort_index=readed_count&amp;order_type=asc" rel="nofollow" href="http://freeutil.net/board/?document_srl=150&amp;mid=pds_freeutils&amp;sort_index=readed_count&amp;order_type=asc">http://freeutil.net/board/?document_srl=150&amp;mid=pds_freeutils&amp;sort_index=readed_count&amp;order_type=asc</a> IE6~7 웹퍼블리셔&amp;웹개발자를 위한 만능 툴(실시간 태그 검색, 소스보기, 소스분석, 실시간 소스편집)</li>
</ul>
<p><a name=".EC.9B.B9_.EC.82.AC.EC.9A.A9.EC.84.B1"></a></p>
<h2>웹 사용성</h2>
<ul>
<li>씽크유저 &#8211; <a title="http://thinkuser.com/" rel="nofollow" href="http://thinkuser.com/">http://thinkuser.com/</a> 사용자경험, 전략, 디자인 관련 기업.</li>
<li>팀인터페이스 &#8211; <a title="http://uidesign.co.kr/" rel="nofollow" href="http://uidesign.co.kr/">http://uidesign.co.kr/</a> 사용성 관련 기업.</li>
<li>Jakob Nielsen &#8211; <a title="http://www.useit.com/" rel="nofollow" href="http://www.useit.com/">http://www.useit.com/</a> 사용성 전문가 제이콥 닐슨.</li>
</ul>
<p><a name=".EC.9B.B9_.EC.84.B1.EB.8A.A5_.EB.B6.84.EC.84.9D"></a></p>
<h2>웹 성능 분석</h2>
<ul>
<li>Cool Check! &#8211; <a title="http://www.coolcheck.co.kr/" rel="nofollow" href="http://www.coolcheck.co.kr/">http://www.coolcheck.co.kr/</a> 웹 위험진단 서비스.</li>
<li>OctaGate SiteTimer &#8211; <a title="http://www.octagate.com/service/SiteTimer/?Target=AJAX" rel="nofollow" href="http://www.octagate.com/service/SiteTimer/?Target=AJAX">http://www.octagate.com/service/SiteTimer/?Target=AJAX</a> 스웨덴의 스톡홀름 서버에서 로드하는 웹 페이지의 로딩속도 측정 서비스.</li>
<li>Web Page Analyzer &#8211; <a title="http://www.websiteoptimization.com/services/analyze/" rel="nofollow" href="http://www.websiteoptimization.com/services/analyze/">http://www.websiteoptimization.com/services/analyze/</a> 웹페이지 퍼포먼스 분석 툴.</li>
<li>Website Speed Test &#8211; <a title="http://www.iwebtool.com/speed_test/" rel="nofollow" href="http://www.iwebtool.com/speed_test/">http://www.iwebtool.com/speed_test/</a> 웹 페이지 로딩속도 측정 서비스. 한 번에 10개의 웹 사이트를 비교.</li>
</ul>
<p><a name=".EC.9B.B9_.EC.96.B4.ED.94.8C.EB.A6.AC.EC.BC.80.EC.9D.B4.EC.85.98"></a></p>
<h2>웹 어플리케이션</h2>
<ul>
<li>Balsamiq Mockups &#8211; <a title="http://www.balsamiq.com/demos/mockups/Mockups.html" rel="nofollow" href="http://www.balsamiq.com/demos/mockups/Mockups.html">http://www.balsamiq.com/demos/mockups/Mockups.html</a> 프로토타이핑 도구.</li>
<li>FCKeditor &#8211; <a title="http://www.fckeditor.net/" rel="nofollow" href="http://www.fckeditor.net/">http://www.fckeditor.net/</a> 웹 에디터.</li>
<li>Genii Software WebEditors &#8211; <a title="http://geniisoft.com/showcase.nsf/WebEditors" rel="nofollow" href="http://geniisoft.com/showcase.nsf/WebEditors">http://geniisoft.com/showcase.nsf/WebEditors</a> 웹 에디터 벤치마크.</li>
<li>MediaWiki &#8211; <a title="http://www.mediawiki.org/" rel="nofollow" href="http://www.mediawiki.org/">http://www.mediawiki.org/</a> 설치형 위키.</li>
<li>Mindomo &#8211; <a title="http://www.mindomo.com/" rel="nofollow" href="http://www.mindomo.com/">http://www.mindomo.com/</a> 온라인 마인드맵.</li>
<li>Textcube &#8211; <a title="http://textcube.org/" rel="nofollow" href="http://textcube.org/">http://textcube.org/</a> 설치형 블로그.</li>
<li>WordPress &#8211; <a title="http://wordpress.org/" rel="nofollow" href="http://wordpress.org/">http://wordpress.org/</a> 설치형 블로그.</li>
<li>WordPress 한국어 포럼 &#8211; <a title="http://wordpress.co.kr/forum/" rel="nofollow" href="http://wordpress.co.kr/forum/">http://wordpress.co.kr/forum/</a></li>
<li>WikiMatrix &#8211; <a title="http://www.wikimatrix.org/" rel="nofollow" href="http://www.wikimatrix.org/">http://www.wikimatrix.org/</a> 위키 벤치마크.</li>
<li>Xpress Engine &#8211; <a title="http://www.zeroboard.com/" rel="nofollow" href="http://www.zeroboard.com/">http://www.zeroboard.com/</a> 콘텐츠 관리 시스템.</li>
</ul>
<p><a name=".EC.9B.B9_.EC.9D.B4.EB.AF.B8.EC.A7.80_.EA.B2.80.EC.83.89"></a></p>
<h2>웹 이미지 검색</h2>
<p><a name=".EC.82.AC.EC.A7.84"></a></p>
<h3>사진</h3>
<ul>
<li>쉐어이미지닷컴 &#8211; <a title="http://shareimage.com/" rel="nofollow" href="http://shareimage.com/">http://shareimage.com/</a></li>
<li>이미지코리아 &#8211; <a title="http://www.imagekorea.co.kr/" rel="nofollow" href="http://www.imagekorea.co.kr/">http://www.imagekorea.co.kr/</a></li>
<li>이미지클릭 &#8211; <a title="http://www.imageclick.com/" rel="nofollow" href="http://www.imageclick.com/">http://www.imageclick.com/</a></li>
<li>Flickr &#8211; <a title="http://flickr.com/" rel="nofollow" href="http://flickr.com/">http://flickr.com/</a></li>
<li>Getty Images &#8211; <a title="http://creative.gettyimages.com/" rel="nofollow" href="http://creative.gettyimages.com/">http://creative.gettyimages.com/</a></li>
<li>Topic &#8211; <a title="http://www.topicphoto.com/" rel="nofollow" href="http://www.topicphoto.com/">http://www.topicphoto.com/</a></li>
<li>세계도시풍경 &#8211; <a title="http://www.jennyhouse.info/" rel="nofollow" href="http://www.jennyhouse.info/">http://www.jennyhouse.info/</a></li>
</ul>
<p><a name=".EC.95.84.EC.9D.B4.EC.BD.98"></a></p>
<h3>아이콘</h3>
<ul>
<li>Icon Buffet &#8211; <a title="http://www.iconbuffet.com/" rel="nofollow" href="http://www.iconbuffet.com/">http://www.iconbuffet.com/</a></li>
<li>Yellow Icon &#8211; <a title="http://yellowicon.com/" rel="nofollow" href="http://yellowicon.com/">http://yellowicon.com/</a></li>
<li>Icojoy &#8211; <a title="http://icojoy.com/" rel="nofollow" href="http://icojoy.com/">http://icojoy.com/</a></li>
<li>iconlet &#8211; <a title="http://www.iconlet.com/" rel="nofollow" href="http://www.iconlet.com/">http://www.iconlet.com/</a></li>
<li>iconspedia &#8211; <a title="http://www.iconspedia.com/" rel="nofollow" href="http://www.iconspedia.com/">http://www.iconspedia.com/</a></li>
<li>Downloadpedia &#8211; <a title="http://downloadpedia.org/Free_Icons_and_Buttons" rel="nofollow" href="http://downloadpedia.org/Free_Icons_and_Buttons">http://downloadpedia.org/Free_Icons_and_Buttons</a></li>
<li>96 of the Best Ever Free Icon Sets &#8211; <a title="http://speckyboy.com/2008/07/28/96-best-ever-free-icon-sets-for-web-designers-developers-and-bloggers/" rel="nofollow" href="http://speckyboy.com/2008/07/28/96-best-ever-free-icon-sets-for-web-designers-developers-and-bloggers/">http://speckyboy.com/2008/07/28/96-best-ever-free-icon-sets-for-web-designers-developers-and-bloggers/</a></li>
</ul>
<p><a name=".EC.9B.B9_.EC.A0.91.EA.B7.BC.EC.84.B1_2"></a></p>
<h2>웹 접근성</h2>
<p><a name=".EC.A7.80.EC.B9.A8"></a></p>
<h3>지침</h3>
<ul>
<li>인터넷 웹 콘텐츠 접근성 지침 1.0 &#8211; <a title="http://www.iabf.or.kr/Pds/StandardView.asp?board=relatstand&amp;bseq=627" rel="nofollow" href="http://www.iabf.or.kr/Pds/StandardView.asp?board=relatstand&amp;bseq=627">http://www.iabf.or.kr/Pds/StandardView.asp?board=relatstand&amp;bseq=627</a> 대한민국 국가표준.</li>
<li>웹 접근성에 대한 빠르고 쉬운 소개 &#8211; <a title="http://kukie.net/resources/accessibility/" rel="nofollow" href="http://kukie.net/resources/accessibility/">http://kukie.net/resources/accessibility/</a></li>
<li>웹 접근성 연구소 - <a title="http://www.wah.or.kr/" rel="nofollow" href="http://www.wah.or.kr/">http://www.wah.or.kr/</a></li>
<li>웹 접근성을 고려한 콘텐츠 제작기법 &#8211; <a title="http://www.iabf.or.kr/Pds/WalView.asp?board=wal&amp;pg=2&amp;bseq=2230&amp;md=&amp;sf=&amp;ss=" rel="nofollow" href="http://www.iabf.or.kr/Pds/WalView.asp?board=wal&amp;pg=2&amp;bseq=2230&amp;md=&amp;sf=&amp;ss=">http://www.iabf.or.kr/Pds/WalView.asp?board=wal&amp;pg=2&amp;bseq=2230&amp;md=&amp;sf=&amp;ss=</a></li>
<li>정보통신 접근성 향상 표준화 포럼 &#8211; <a title="http://www.iabf.or.kr/" rel="nofollow" href="http://www.iabf.or.kr/">http://www.iabf.or.kr/</a> 웹 접근성에 관한 연구 및 발간 자료가 풍부.</li>
<li>한국 웹 접근성 그룹 &#8211; <a title="http://kwag.net/" rel="nofollow" href="http://kwag.net/">http://kwag.net/</a> 한국의 웹 접근성 활동.</li>
<li>한국정보문화진흥원 &#8211; <a title="http://www.kado.or.kr/" rel="nofollow" href="http://www.kado.or.kr/">http://www.kado.or.kr/</a></li>
<li>Adobe &gt; Accessibility Resource Center &#8211; <a title="http://www.adobe.com/accessibility/index.html" rel="nofollow" href="http://www.adobe.com/accessibility/index.html">http://www.adobe.com/accessibility/index.html</a></li>
<li>BBC &gt; Standards &amp; Guidelines &#8211; <a title="http://www.bbc.co.uk/guidelines/newmedia/accessibility/" rel="nofollow" href="http://www.bbc.co.uk/guidelines/newmedia/accessibility/">http://www.bbc.co.uk/guidelines/newmedia/accessibility/</a></li>
<li>Best Practice for Accessible Flash Design &#8211; <a title="http://www.adobe.com/resources/accessibility/best_practices/bp_fp.html" rel="nofollow" href="http://www.adobe.com/resources/accessibility/best_practices/bp_fp.html">http://www.adobe.com/resources/accessibility/best_practices/bp_fp.html</a></li>
<li>Fujitsu &gt; Web Accessibility Guidelines &#8211; <a title="http://www.fujitsu.com/us/accessibility/" rel="nofollow" href="http://www.fujitsu.com/us/accessibility/">http://www.fujitsu.com/us/accessibility/</a></li>
<li>HP &gt; Accessibility &#8211; <a title="http://www.hp.com/hpinfo/abouthp/accessibility/" rel="nofollow" href="http://www.hp.com/hpinfo/abouthp/accessibility/">http://www.hp.com/hpinfo/abouthp/accessibility/</a></li>
<li>IBM &gt; Web accessibility &#8211; <a title="http://www.ibm.com/able/guidelines/web/accessweb.html" rel="nofollow" href="http://www.ibm.com/able/guidelines/web/accessweb.html">http://www.ibm.com/able/guidelines/web/accessweb.html</a></li>
<li>Microsoft &gt; Accessibility &#8211; <a title="http://www.microsoft.com/enable/" rel="nofollow" href="http://www.microsoft.com/enable/">http://www.microsoft.com/enable/</a></li>
<li>USA &gt; Section 508 &#8211; <a title="http://www.section508.gov/" rel="nofollow" href="http://www.section508.gov/">http://www.section508.gov/</a></li>
<li>Yahoo &gt; UK &gt; Accessibility Help &#8211; <a title="http://help.yahoo.com/help/uk/accessibility/" rel="nofollow" href="http://help.yahoo.com/help/uk/accessibility/">http://help.yahoo.com/help/uk/accessibility/</a></li>
<li>WebAIM &#8211; <a title="http://webaim.org/" rel="nofollow" href="http://webaim.org/">http://webaim.org/</a></li>
<li>W3C WAI &#8211; <a title="http://www.w3.org/WAI/" rel="nofollow" href="http://www.w3.org/WAI/">http://www.w3.org/WAI/</a></li>
<li>WCAG 1.0 &#8211; <a title="http://www.w3.org/TR/WAI-WEBCONTENT/" rel="nofollow" href="http://www.w3.org/TR/WAI-WEBCONTENT/">http://www.w3.org/TR/WAI-WEBCONTENT/</a></li>
<li>WCAG 1.0 (한글) &#8211; <a title="http://gregshin.pe.kr/wcag/wai-pageauth.html" rel="nofollow" href="http://gregshin.pe.kr/wcag/wai-pageauth.html">http://gregshin.pe.kr/wcag/wai-pageauth.html</a></li>
<li>WCAG 2.0 Recommendation &#8211; <a title="http://www.w3.org/TR/WCAG20/" rel="nofollow" href="http://www.w3.org/TR/WCAG20/">http://www.w3.org/TR/WCAG20/</a></li>
<li>WCAG 2.0 Understanding &#8211; <a title="http://www.w3.org/TR/UNDERSTANDING-WCAG20/" rel="nofollow" href="http://www.w3.org/TR/UNDERSTANDING-WCAG20/">http://www.w3.org/TR/UNDERSTANDING-WCAG20/</a></li>
</ul>
<p><a name=".EC.83.89"></a></p>
<h3>색</h3>
<ul>
<li>Colour Contrast Check(snook.ca) &#8211; <a title="http://www.snook.ca/technical/colour_contrast/colour.html" rel="nofollow" href="http://www.snook.ca/technical/colour_contrast/colour.html">http://www.snook.ca/technical/colour_contrast/colour.html</a></li>
<li>Colour Contrast(Juicy Studio) &#8211; <a title="http://juicystudio.com/services/luminositycontrastratio.php" rel="nofollow" href="http://juicystudio.com/services/luminositycontrastratio.php">http://juicystudio.com/services/luminositycontrastratio.php</a></li>
<li>Colour Contrast Analyzer(Colors on the web) &#8211; <a title="http://www.colorsontheweb.com/colorcontrast.asp" rel="nofollow" href="http://www.colorsontheweb.com/colorcontrast.asp">http://www.colorsontheweb.com/colorcontrast.asp</a></li>
<li>Contrast Analyser(The Paciello Group) &#8211; <a title="http://www.paciellogroup.com/resources/contrast-analyser.html" rel="nofollow" href="http://www.paciellogroup.com/resources/contrast-analyser.html">http://www.paciellogroup.com/resources/contrast-analyser.html</a> Windows/MAC Application.</li>
</ul>
<p><a name=".EC.9B.B9_.ED.91.9C.EC.A4.80_2"></a></p>
<h2>웹 표준</h2>
<ul>
<li>오픈웹 &#8211; <a title="http://openweb.or.kr/" rel="nofollow" href="http://openweb.or.kr/">http://openweb.or.kr/</a> 웹페이지 국제표준화를 위한 민원/소송.</li>
<li>웹 표준 점검 목록 &#8211; <a title="http://kukie.net/resources/checklist/" rel="nofollow" href="http://kukie.net/resources/checklist/">http://kukie.net/resources/checklist/</a></li>
<li>한국 웹 표준 사이트 모음 &#8211; <a title="http://kwsg.org/" rel="nofollow" href="http://kwsg.org/">http://kwsg.org/</a> by 신현석.</li>
<li>CDK(CSS Design Korea) &#8211; <a title="http://forum.standardmag.org/" rel="nofollow" href="http://forum.standardmag.org/">http://forum.standardmag.org/</a> XHTML, CSS, 웹표준, 웹접근성 관련 커뮤니티.</li>
<li>The Web Standards Project &#8211; <a title="http://webstandards.org/" rel="nofollow" href="http://webstandards.org/">http://webstandards.org/</a></li>
<li>W3C 대한민국 사무국 &#8211; <a title="http://www.w3c.or.kr/" rel="nofollow" href="http://www.w3c.or.kr/">http://www.w3c.or.kr/</a></li>
<li>W3C 문서 한국어 번역판 &#8211; <a title="http://www.w3.org/2003/03/Translations/byLanguage?language=ko" rel="nofollow" href="http://www.w3.org/2003/03/Translations/byLanguage?language=ko">http://www.w3.org/2003/03/Translations/byLanguage?language=ko</a></li>
<li>Web Standards Group &#8211; <a title="http://webstandardsgroup.org/" rel="nofollow" href="http://webstandardsgroup.org/">http://webstandardsgroup.org/</a></li>
<li>Web Standards Korea &#8211; <a title="http://webstandards.or.kr/" rel="nofollow" href="http://webstandards.or.kr/">http://webstandards.or.kr/</a> 한국의 웹 표준활동에 대한 영문 블로그.</li>
<li>웹표준경진대회 출품작 &#8211; <a title="http://forum.standardmag.org/viewforum.php?id=17" rel="nofollow" href="http://forum.standardmag.org/viewforum.php?id=17">http://forum.standardmag.org/viewforum.php?id=17</a> 2008년 6월 웹표준경진대회 출품작 모음.</li>
<li>Clearboth(Web Standards Evangelist Forum) &#8211; <a title="http://www.clearboth.org/" rel="nofollow" href="http://www.clearboth.org/">http://www.clearboth.org/</a></li>
</ul>
<p><a name=".ED.86.B5.EA.B3.84"></a></p>
<h2>통계</h2>
<ul>
<li>구글 분석 &#8211; <a title="http://www.google.com/analytics/ko-KR/" rel="nofollow" href="http://www.google.com/analytics/ko-KR/">http://www.google.com/analytics/ko-KR/</a> 나의 웹사이트 통계관리.</li>
<li>다음 웹인사이드 &#8211; <a title="http://inside.daum.net/" rel="nofollow" href="http://inside.daum.net/">http://inside.daum.net/</a> 나의 웹사이트 통계관리.</li>
<li>랭키닷컴 &#8211; <a title="http://rankey.com/" rel="nofollow" href="http://rankey.com/">http://rankey.com/</a> Navvy 사용자의 표본집계를 이용한 웹사이트 순위.</li>
<li>통계청 &#8211; <a title="http://www.nso.go.kr/" rel="nofollow" href="http://www.nso.go.kr/">http://www.nso.go.kr/</a></li>
<li>인터넷 통계정보 검색시스템 &#8211; <a title="http://isis.nic.or.kr/" rel="nofollow" href="http://isis.nic.or.kr/">http://isis.nic.or.kr/</a></li>
<li>Internet Trend &#8211; <a title="http://internettrend.co.kr/" rel="nofollow" href="http://internettrend.co.kr/">http://internettrend.co.kr/</a> 국내 인터넷 관련 통계.</li>
<li>MarketShare &#8211; <a title="http://marketshare.hitslink.com/" rel="nofollow" href="http://marketshare.hitslink.com/">http://marketshare.hitslink.com/</a> 월드와이드의 다양한 IT관련 통계 제공</li>
<li>OneStat &#8211; <a title="http://www.onestat.com/html/aboutus_pressbox.html" rel="nofollow" href="http://www.onestat.com/html/aboutus_pressbox.html">http://www.onestat.com/html/aboutus_pressbox.html</a> Web Browsers, Operating Systems, Screen Resolutions, etc &#8230;</li>
<li>TheCounter &#8211; <a title="http://www.thecounter.com/stats/" rel="nofollow" href="http://www.thecounter.com/stats/">http://www.thecounter.com/stats/</a> Browser Stats</li>
<li>W3counter &#8211; <a title="http://www.w3counter.com/globalstats.php" rel="nofollow" href="http://www.w3counter.com/globalstats.php">http://www.w3counter.com/globalstats.php</a> Web Browsers, Operating Systems, Countries, Screen Resolutions</li>
</ul>
<p><a name="CSS"></a></p>
<h2>CSS</h2>
<p><a name="CSS_Framework"></a></p>
<h3>CSS Framework</h3>
<ul>
<li>Blueprint &#8211; <a title="http://code.google.com/p/blueprintcss/" rel="nofollow" href="http://code.google.com/p/blueprintcss/">http://code.google.com/p/blueprintcss/</a></li>
<li>List of CSS Frameworks &#8211; <a title="http://en.wikipedia.org/wiki/List_of_CSS_frameworks" rel="nofollow" href="http://en.wikipedia.org/wiki/List_of_CSS_frameworks">http://en.wikipedia.org/wiki/List_of_CSS_frameworks</a></li>
<li>Logicss &#8211; <a title="http://code.google.com/p/logicss/" rel="nofollow" href="http://code.google.com/p/logicss/">http://code.google.com/p/logicss/</a></li>
<li>Yahoo UI Library &#8211; <a title="http://developer.yahoo.com/yui/reset/" rel="nofollow" href="http://developer.yahoo.com/yui/reset/">http://developer.yahoo.com/yui/reset/</a></li>
<li>YAML &#8211; <a title="http://www.yaml.de/en/" rel="nofollow" href="http://www.yaml.de/en/">http://www.yaml.de/en/</a></li>
</ul>
<p><a name="CSS_Reference"></a></p>
<h3>CSS Reference</h3>
<ul>
<li>스타일시트로 만드는 Fixed Layer &#8211; <a title="http://naradesign.net/open_content/reference/fixedLayer/" rel="nofollow" href="http://naradesign.net/open_content/reference/fixedLayer/">http://naradesign.net/open_content/reference/fixedLayer/</a> by 정찬명.</li>
<li>중첩 목록을 이용한 메뉴 만들기 예제 &#8211; <a title="http://naradesign.net/open_content/reference/navigation.html" rel="nofollow" href="http://naradesign.net/open_content/reference/navigation.html">http://naradesign.net/open_content/reference/navigation.html</a> by 정찬명.</li>
<li>About Conditional Comments &#8211; <a title="http://msdn.microsoft.com/en-us/library/ms537512.aspx" rel="nofollow" href="http://msdn.microsoft.com/en-us/library/ms537512.aspx">http://msdn.microsoft.com/en-us/library/ms537512.aspx</a> MS IE 전용 브라우저 버전별 조건 주석.</li>
<li>A sample style sheet for HTML 4.0 &#8211; <a title="http://www.w3.org/TR/1998/REC-CSS2-19980512/sample.html" rel="nofollow" href="http://www.w3.org/TR/1998/REC-CSS2-19980512/sample.html">http://www.w3.org/TR/1998/REC-CSS2-19980512/sample.html</a> W3C에서 권장하는 HTML 엘리먼트의 기본 스타일 정보</li>
<li>Bob Image Replacement &#8211; <a title="http://neal.venditto.org/articles/12/bir/" rel="nofollow" href="http://neal.venditto.org/articles/12/bir/">http://neal.venditto.org/articles/12/bir/</a> z-index를 이용한 IR 기법으로 현존하는 기법 가운데 가장 접근성이 높은 방식.</li>
<li>CSS Drive &#8211; <a title="http://www.cssdrive.com/" rel="nofollow" href="http://www.cssdrive.com/">http://www.cssdrive.com/</a> 다양한 CSS 예제들.</li>
<li>CSS Hack &#8211; <a title="http://centricle.com/ref/css/filters/" rel="nofollow" href="http://centricle.com/ref/css/filters/">http://centricle.com/ref/css/filters/</a></li>
<li>CSS Hack 정리 &#8211; <a title="http://www.nmindplus.com/2006/06/28/css-hack/" rel="nofollow" href="http://www.nmindplus.com/2006/06/28/css-hack/">http://www.nmindplus.com/2006/06/28/css-hack/</a> by nmind.</li>
<li>CSS Test and Experiments &#8211; <a title="http://www.brunildo.org/test/" rel="nofollow" href="http://www.brunildo.org/test/">http://www.brunildo.org/test/</a> 다수의 CSS 실험 예제.</li>
<li>CSS Zen Garden &#8211; <a title="http://www.csszengarden.com/" rel="nofollow" href="http://www.csszengarden.com/">http://www.csszengarden.com/</a> 하나의 Markup 에 다양한 CSS 파일을 적용한 예제.</li>
<li>Em Calculator &#8211; <a title="http://riddle.pl/emcalc/" rel="nofollow" href="http://riddle.pl/emcalc/">http://riddle.pl/emcalc/</a> px값을 em값 으로 환산해 줌.</li>
<li>Layout Gala &#8211; <a title="http://blog.html.it/layoutgala/" rel="nofollow" href="http://blog.html.it/layoutgala/">http://blog.html.it/layoutgala/</a> CSS 박스모델에 대한 예제.</li>
<li>MSDN CSS Reference &#8211; <a title="http://msdn.microsoft.com/en-us/library/ms531209.aspx" rel="nofollow" href="http://msdn.microsoft.com/en-us/library/ms531209.aspx">http://msdn.microsoft.com/en-us/library/ms531209.aspx</a> MS IE 전용 CSS Properties 참조.</li>
<li>Nifty Corners &#8211; <a title="http://www.html.it/articoli/niftycube/nifty1.html" rel="nofollow" href="http://www.html.it/articoli/niftycube/nifty1.html">http://www.html.it/articoli/niftycube/nifty1.html</a> Javascript와 CSS를 이용한 라운딩 표현.</li>
<li>position:fixed 구현하기 &#8211; <a title="http://divinentd.com/experiments/emulating-position-fixed.html" rel="nofollow" href="http://divinentd.com/experiments/emulating-position-fixed.html">http://divinentd.com/experiments/emulating-position-fixed.html</a></li>
<li>Reed Design &#8211; <a title="http://www.reeddesign.co.uk/test/points-pixels.html" rel="nofollow" href="http://www.reeddesign.co.uk/test/points-pixels.html">http://www.reeddesign.co.uk/test/points-pixels.html</a> pt-px-em-% 단위 비교표.</li>
<li>The Noodle Incident &#8211; <a title="http://www.thenoodleincident.com/" rel="nofollow" href="http://www.thenoodleincident.com/">http://www.thenoodleincident.com/</a> CSS 박스모델에 대한 예제 수록.</li>
<li>53CSS &#8211; <a title="http://www.smashingmagazine.com/2007/01/19/53-css-techniques-you-couldnt-live-without/" rel="nofollow" href="http://www.smashingmagazine.com/2007/01/19/53-css-techniques-you-couldnt-live-without/">http://www.smashingmagazine.com/2007/01/19/53-css-techniques-you-couldnt-live-without/</a> Techniques You Couldn&#8217;t Live Without.</li>
</ul>
<p><a name="CSS_Standards"></a></p>
<h3>CSS Standards</h3>
<ul>
<li>W3C CSS &#8211; <a title="http://www.w3.org/Style/CSS/" rel="nofollow" href="http://www.w3.org/Style/CSS/">http://www.w3.org/Style/CSS/</a></li>
<li>W3C CSS 유효성 검사 &#8211; <a title="http://jigsaw.w3.org/css-validator/" rel="nofollow" href="http://jigsaw.w3.org/css-validator/">http://jigsaw.w3.org/css-validator/</a></li>
<li>W3C CSS2 규격 원문 &#8211; <a title="http://www.w3.org/TR/REC-CSS2/" rel="nofollow" href="http://www.w3.org/TR/REC-CSS2/">http://www.w3.org/TR/REC-CSS2/</a></li>
<li>W3C CSS2 규격(한글) &#8211; <a title="http://trio.co.kr/webrefer/css2/cover.html" rel="nofollow" href="http://trio.co.kr/webrefer/css2/cover.html">http://trio.co.kr/webrefer/css2/cover.html</a></li>
<li>W3C CSS2.1 Candidate Recommendation &#8211; <a title="http://www.w3.org/TR/CSS21/propidx.html" rel="nofollow" href="http://www.w3.org/TR/CSS21/propidx.html">http://www.w3.org/TR/CSS21/propidx.html</a></li>
<li>W3C CSS2.1 Candidate Recommendation 추가된 속성들 &#8211; <a title="http://www.w3.org/TR/CSS21/changes.html#new" rel="nofollow" href="http://www.w3.org/TR/CSS21/changes.html#new">http://www.w3.org/TR/CSS21/changes.html#new</a></li>
<li>W3C CSS3 Working Draft Road Map &#8211; <a title="http://www.w3.org/TR/css3-roadmap/" rel="nofollow" href="http://www.w3.org/TR/css3-roadmap/">http://www.w3.org/TR/css3-roadmap/</a></li>
<li>Working Draft CSS3 소개 &#8211; <a title="http://www.css3.info/" rel="nofollow" href="http://www.css3.info/">http://www.css3.info/</a></li>
<li>Working Draft CSS3 Properties Test &#8211; <a title="http://westciv.com/iphonetests/" rel="nofollow" href="http://westciv.com/iphonetests/">http://westciv.com/iphonetests/</a></li>
</ul>
<p><a name="CSS_Vendor_Extensions"></a></p>
<h3>CSS Vendor Extensions</h3>
<ul>
<li>Firefox CSS Extensions &#8211; <a title="https://developer.mozilla.org/en/CSS_Reference/Mozilla_Extensions" rel="nofollow" href="https://developer.mozilla.org/en/CSS_Reference/Mozilla_Extensions">https://developer.mozilla.org/en/CSS_Reference/Mozilla_Extensions</a></li>
<li>IE8 CSS Extensions &#8211; <a title="http://blogs.msdn.com/ie/archive/2008/09/08/microsoft-css-vendor-extensions.aspx" rel="nofollow" href="http://blogs.msdn.com/ie/archive/2008/09/08/microsoft-css-vendor-extensions.aspx">http://blogs.msdn.com/ie/archive/2008/09/08/microsoft-css-vendor-extensions.aspx</a></li>
<li>Safari CSS Extensions &#8211; <a title="http://developer.apple.com/DOCUMENTATION/AppleApplications/Reference/SafariCSSRef/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266" rel="nofollow" href="http://developer.apple.com/DOCUMENTATION/AppleApplications/Reference/SafariCSSRef/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266">http://developer.apple.com/DOCUMENTATION/AppleApplications/Reference/SafariCSSRef/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266</a></li>
<li>Opera CSS Extensions - <a title="http://www.opera.com/docs/specs/opera95/css/" rel="nofollow" href="http://www.opera.com/docs/specs/opera95/css/">http://www.opera.com/docs/specs/opera95/css/</a></li>
</ul>
<p><a name="Flash"></a></p>
<h2>Flash</h2>
<ul>
<li>플래시에 fallback 제공하기 &#8211; <a title="http://hyeonseok.com/pmwiki/index.php/Markup/Object" rel="nofollow" href="http://hyeonseok.com/pmwiki/index.php/Markup/Object">http://hyeonseok.com/pmwiki/index.php/Markup/Object</a> by 신현석.</li>
<li>플래시 대체 콘텐츠와 noscript 요소 &#8211; <a title="http://blog.wystan.net/2008/03/25/flash-alternative-content-and-noscript" rel="nofollow" href="http://blog.wystan.net/2008/03/25/flash-alternative-content-and-noscript">http://blog.wystan.net/2008/03/25/flash-alternative-content-and-noscript</a> Wystans&#8217; tales</li>
<li>플래시 클럽 &#8211; <a title="http://flashclub.co.kr/" rel="nofollow" href="http://flashclub.co.kr/">http://flashclub.co.kr/</a></li>
<li>Niqui Merret &#8211; <a title="http://niquimerret.com/" rel="nofollow" href="http://niquimerret.com/">http://niquimerret.com/</a> Flash &amp; Accessibility Expert.</li>
</ul>
<p><a name="Fonts"></a></p>
<h2>Fonts</h2>
<ul>
<li>우리글닷컴 &#8211; <a title="http://www.woorigle.com/W_font/list_02.php" rel="nofollow" href="http://www.woorigle.com/W_font/list_02.php">http://www.woorigle.com/W_font/list_02.php</a> 가독성 좋은 우리나라의 이쁜 클리어타입(ClearType) 폰트 아직은 유료지만 잠재성을 가진 폰트. (아쉽게도 익스플로러에서만 폰트 확인 가능.)</li>
<li>네이버 나눔고딕 &#8211; <a title="http://hangeul.naver.com/index.nhn?goto=fonts#fonts" rel="nofollow" href="http://hangeul.naver.com/index.nhn?goto=fonts#fonts">http://hangeul.naver.com/index.nhn?goto=fonts#fonts</a> 2008년 한글날을 기념하여 네이버에서 출시한 무료폰트 &#8216;나눔고딕&#8217;</li>
<li>Common fonts to all versions of Windows &amp; Mac equivalents &#8211; <a title="http://www.ampsoft.net/webdesign-l/WindowsMacFonts.html" rel="nofollow" href="http://www.ampsoft.net/webdesign-l/WindowsMacFonts.html">http://www.ampsoft.net/webdesign-l/WindowsMacFonts.html</a></li>
</ul>
<p><a name="HTML.2FXHTML"></a></p>
<h2>HTML/XHTML</h2>
<ul>
<li>HTML4와 HTML5의 차이점 &#8211; <a title="http://www.creation.net/work/html5/html4-differences/Overview_ko.html" rel="nofollow" href="http://www.creation.net/work/html5/html4-differences/Overview_ko.html">http://www.creation.net/work/html5/html4-differences/Overview_ko.html</a></li>
<li>WHATWG HTML5(Working Draft) &#8211; <a title="http://www.whatwg.org/specs/web-apps/current-work/" rel="nofollow" href="http://www.whatwg.org/specs/web-apps/current-work/">http://www.whatwg.org/specs/web-apps/current-work/</a></li>
<li>W3C HTML 4.01 규격(한글) &#8211; <a title="http://trio.co.kr/webrefer/html/cover.html" rel="nofollow" href="http://trio.co.kr/webrefer/html/cover.html">http://trio.co.kr/webrefer/html/cover.html</a></li>
<li>W3C HTML 4.01 Index of Elements &#8211; <a title="http://www.w3.org/TR/html401/index/elements.html" rel="nofollow" href="http://www.w3.org/TR/html401/index/elements.html">http://www.w3.org/TR/html401/index/elements.html</a></li>
<li>W3C HTML 4.01 Index of Elements(한글) &#8211; <a title="http://trio.co.kr/webrefer/html/index/elements.html" rel="nofollow" href="http://trio.co.kr/webrefer/html/index/elements.html">http://trio.co.kr/webrefer/html/index/elements.html</a></li>
<li>W3C HTML 4.01 Index of Attributes &#8211; <a title="http://www.w3.org/TR/html401/index/attributes.html" rel="nofollow" href="http://www.w3.org/TR/html401/index/attributes.html">http://www.w3.org/TR/html401/index/attributes.html</a></li>
<li>W3C HTML 4.01 Index of Attributes(한글) &#8211; <a title="http://trio.co.kr/webrefer/html/index/attributes.html" rel="nofollow" href="http://trio.co.kr/webrefer/html/index/attributes.html">http://trio.co.kr/webrefer/html/index/attributes.html</a></li>
<li>W3C XHTML 에 대한 Wiki 의 정의 &#8211; <a title="http://ko.wikipedia.org/wiki/XHTML" rel="nofollow" href="http://ko.wikipedia.org/wiki/XHTML">http://ko.wikipedia.org/wiki/XHTML</a></li>
<li>W3C XHTML 1.0 원문 &#8211; <a title="http://www.w3.org/TR/xhtml1/" rel="nofollow" href="http://www.w3.org/TR/xhtml1/">http://www.w3.org/TR/xhtml1/</a></li>
<li>W3C XHTML 1.0 (한글) &#8211; <a title="http://trio.co.kr/webrefer/xhtml/overview.html" rel="nofollow" href="http://trio.co.kr/webrefer/xhtml/overview.html">http://trio.co.kr/webrefer/xhtml/overview.html</a></li>
<li>W3C Markup 유효성 검사 &#8211; <a title="http://validator.w3.org/" rel="nofollow" href="http://validator.w3.org/">http://validator.w3.org/</a></li>
<li>W3 Schools Online Web Tutorials &#8211; <a title="http://www.w3schools.com/" rel="nofollow" href="http://www.w3schools.com/">http://www.w3schools.com/</a> W3C 의 표준스펙에 대한 학습 자료.</li>
<li>XHTML Character Entity Referenece &#8211; <a title="http://www.digitalmediaminute.com/reference/entity/index.php" rel="nofollow" href="http://www.digitalmediaminute.com/reference/entity/index.php">http://www.digitalmediaminute.com/reference/entity/index.php</a> XHTML 특수문자 본체 참조.</li>
</ul>
<p><a name="Javascript"></a></p>
<h2>Javascript</h2>
<ul>
<li>자바스크립트를 이용하여 IE5~6을 IE7~8처럼 만들기 &#8211; <a title="http://code.google.com/p/ie7-js/" rel="nofollow" href="http://code.google.com/p/ie7-js/">http://code.google.com/p/ie7-js/</a> 또 다른 렌더링 버그 유발로 권장 안함.</li>
<li>자바스크립트 미지원 환경을 위한 CSS 적용 팁 &#8211; <a title="http://facedown.co.kr/tt/entry/overWriteScriptCss" rel="nofollow" href="http://facedown.co.kr/tt/entry/overWriteScriptCss">http://facedown.co.kr/tt/entry/overWriteScriptCss</a> by 유인동.</li>
<li>BluShoes &#8211; <a title="http://www.blueshoes.org/en/javascript" rel="nofollow" href="http://www.blueshoes.org/en/javascript">http://www.blueshoes.org/en/javascript</a> Javascript 예제.</li>
<li>DOM Script 예제 &#8211; <a title="http://www.acornpub.co.kr/sample/dom/index.html" rel="nofollow" href="http://www.acornpub.co.kr/sample/dom/index.html">http://www.acornpub.co.kr/sample/dom/index.html</a> 겸손한 자바스크립트 예제들. 에이콘 출판사.</li>
<li>IFRAME Resize Script &#8211; <a title="http://guymal.com/mycode/iframe_size/" rel="nofollow" href="http://guymal.com/mycode/iframe_size/">http://guymal.com/mycode/iframe_size/</a></li>
<li>Online Tools &#8211; <a title="http://onlinetools.org/" rel="nofollow" href="http://onlinetools.org/">http://onlinetools.org/</a> Javascript, DOM 예제 수록.</li>
<li>Unit PNG Fix &#8211; <a title="http://labs.unitinteractive.com/unitpngfix.php" rel="nofollow" href="http://labs.unitinteractive.com/unitpngfix.php">http://labs.unitinteractive.com/unitpngfix.php</a></li>
<li>IE PNG Alpha Fix v1.0 &#8211; <a title="http://www.twinhelix.com/css/iepngfix/demo/" rel="nofollow" href="http://www.twinhelix.com/css/iepngfix/demo/">http://www.twinhelix.com/css/iepngfix/demo/</a></li>
</ul>
<p><a name="User_Interface_.EA.B0.9C.EB.B0.9C"></a></p>
<h2>User Interface 개발</h2>
<ul>
<li>Daum UI Dev Guideline &#8211; <a title="http://ui.daum.net/guideline" rel="nofollow" href="http://ui.daum.net/guideline">http://ui.daum.net/guideline</a></li>
<li>High Performence Web Sites &#8211; <a title="http://stevesouders.com/examples/rules.php" rel="nofollow" href="http://stevesouders.com/examples/rules.php">http://stevesouders.com/examples/rules.php</a> 고성능 웹사이트를 위한 인터페이스 제작지침</li>
<li>IBM 한국 developerWorks 웹 개발 &#8211; <a title="http://www.ibm.com/developerworks/kr/web/" rel="nofollow" href="http://www.ibm.com/developerworks/kr/web/">http://www.ibm.com/developerworks/kr/web/</a></li>
<li>NHN UI Develope Guide &#8211; <a title="http://html.nhndesign.com/" rel="nofollow" href="http://html.nhndesign.com/">http://html.nhndesign.com/</a> NHN 의 UI 개발 지침.</li>
<li>Yahoo Develoeper Network(yui) &#8211; <a title="http://developer.yahoo.com/yui/" rel="nofollow" href="http://developer.yahoo.com/yui/">http://developer.yahoo.com/yui/</a></li>
</ul>
<p><!--  NewPP limit report Preprocessor node count: 56/1000000 Post-expand include size: 0/2097152 bytes Template argument size: 0/2097152 bytes Expensive parser function count: 0/100 --><!-- Saved in parser cache with key nurizip-mw_:pcache:idhash:4-0!1!0!!ko!2!edit=0 and timestamp 20090715223044 --></p>
<div>원본 주소 ‘<a href="http://naradesign.net/wiki/UI_%EA%B0%9C%EB%B0%9C%EC%9E%90%EB%A5%BC_%EC%9C%84%ED%95%9C_%EB%B6%81%EB%A7%88%ED%81%AC">http://naradesign.net/wiki/UI_%EA%B0%9C%EB%B0%9C%EC%9E%90%EB%A5%BC_%EC%9C%84%ED%95%9C_%EB%B6%81%EB%A7%88%ED%81%AC</a>’</div>
<p><!-- end content --></div>
<p><!-- end of MAINCONTENT div --></p>
<div id="side">
<ul>
<li><span>개인 도구 </span>
<ul>
<li><a href="http://iloveswimming.wordpress.com/wiki/index.php?title=%ED%8A%B9%EC%88%98%EA%B8%B0%EB%8A%A5:UserLogin&amp;returnto=UI_%EA%B0%9C%EB%B0%9C%EC%9E%90%EB%A5%BC_%EC%9C%84%ED%95%9C_%EB%B6%81%EB%A7%88%ED%81%AC">로그인 / 계정 만들기 </a></li>
</ul>
</li>
<li><span>둘러보기 </span>
<ul>
<li><a href="http://iloveswimming.wordpress.com/wiki/%EB%8C%80%EB%AC%B8">대문</a></li>
<li><a href="http://iloveswimming.wordpress.com/wiki/NARADESIGN:%EC%82%AC%EC%9A%A9%EC%9E%90_%EB%AA%A8%EC%9E%84">사용자 모임</a></li>
<li><a href="http://iloveswimming.wordpress.com/wiki/NARADESIGN:%EC%9A%94%EC%A6%98_%ED%99%94%EC%A0%9C">요즘 화제</a></li>
<li><a href="http://iloveswimming.wordpress.com/wiki/%ED%8A%B9%EC%88%98%EA%B8%B0%EB%8A%A5:RecentChanges">최근 바뀜</a></li>
</ul>
</li>
</ul>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iloveswimming.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iloveswimming.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iloveswimming.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iloveswimming.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iloveswimming.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iloveswimming.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iloveswimming.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iloveswimming.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iloveswimming.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iloveswimming.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iloveswimming.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iloveswimming.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iloveswimming.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iloveswimming.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iloveswimming.wordpress.com&amp;blog=8581492&amp;post=48&amp;subd=iloveswimming&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iloveswimming.wordpress.com/2009/07/16/ui%ea%b0%9c%eb%b0%9c%ec%9e%90%eb%a5%bc-%ec%9c%84%ed%95%9c-%eb%b6%81%eb%a7%88%ed%81%ac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7c18398b82ea66c60a3ef18c2d787cb8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shl0586</media:title>
		</media:content>
	</item>
		<item>
		<title>游泳练习 Gtrack</title>
		<link>http://iloveswimming.wordpress.com/2009/07/16/%e6%b8%b8%e6%b3%b3%e7%bb%83%e4%b9%a0-gtrack/</link>
		<comments>http://iloveswimming.wordpress.com/2009/07/16/%e6%b8%b8%e6%b3%b3%e7%bb%83%e4%b9%a0-gtrack/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 02:01:41 +0000</pubDate>
		<dc:creator>shl0586</dc:creator>
				<category><![CDATA[游泳练习]]></category>

		<guid isPermaLink="false">http://iloveswimming.wordpress.com/?p=25</guid>
		<description><![CDATA[  http://www.youtube.com/watch?v=kjgN4aQyeSc<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iloveswimming.wordpress.com&amp;blog=8581492&amp;post=25&amp;subd=iloveswimming&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p> </p>
<p><a href="http://www.youtube.com/watch?v=kjgN4aQyeSc">http://www.youtube.com/watch?v=kjgN4aQyeSc</a></p>
<span style="text-align:center; display: block;"><a href="http://iloveswimming.wordpress.com/2009/07/16/%e6%b8%b8%e6%b3%b3%e7%bb%83%e4%b9%a0-gtrack/"><img src="http://img.youtube.com/vi/kjgN4aQyeSc/2.jpg" alt="" /></a></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iloveswimming.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iloveswimming.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iloveswimming.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iloveswimming.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iloveswimming.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iloveswimming.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iloveswimming.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iloveswimming.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iloveswimming.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iloveswimming.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iloveswimming.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iloveswimming.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iloveswimming.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iloveswimming.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iloveswimming.wordpress.com&amp;blog=8581492&amp;post=25&amp;subd=iloveswimming&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iloveswimming.wordpress.com/2009/07/16/%e6%b8%b8%e6%b3%b3%e7%bb%83%e4%b9%a0-gtrack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7c18398b82ea66c60a3ef18c2d787cb8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shl0586</media:title>
		</media:content>
	</item>
		<item>
		<title>眼部整形法</title>
		<link>http://iloveswimming.wordpress.com/2009/07/15/%e7%9c%bc%e9%83%a8%e6%95%b4%e5%bd%a2%e6%b3%95/</link>
		<comments>http://iloveswimming.wordpress.com/2009/07/15/%e7%9c%bc%e9%83%a8%e6%95%b4%e5%bd%a2%e6%b3%95/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 13:08:43 +0000</pubDate>
		<dc:creator>shl0586</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[整形手术]]></category>

		<guid isPermaLink="false">http://iloveswimming.wordpress.com/?p=18</guid>
		<description><![CDATA[  埋线法 我院有很多种埋线法，和过去使用的各种方法相比，现在采用了更先进的，更容易保持双眼皮的方法。 一般来说，埋线法是利用很细的线做出双眼皮形状的手术方法，该手术方法有比较简单，不会出现肿胀的优点。 眼睛上部脂肪不多，眼皮较薄，没有下垂皮肤时，患者比较适合做该手术，并能取得较好的手术效果。 在患者眼皮上切开1-2毫米的切口或不通过切口都可以进行手术。 手术时间较短，肿胀程度也较小，大部分经过3天即可痊愈。 但是，眼皮下垂较厉害时，采用切开法较好，脂肪较多时，采用部分切开法或切开法可以取得更好的效果。  前开 前开是针对于左右幅度较窄，看起来不太爽快的眼睛进行的手术。 现行的手术方法有三角pedicle法，Y-切开法，W-切开法等多种手术方法。 手术后眼睛会看起来很利索，并且能取得使眼睛左右幅度变大，使黑色瞳孔内侧的白色眼球部位显露更多的效果，看起来像对眼的假性斜视和真性内斜视，也能取得一定的矫正效果。 手术通过约5毫米的切口进行，不会出现肿胀，手术后4天即可拆线，可单独进行前开手术，也可将前开手术和双眼皮手术同时进行。<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iloveswimming.wordpress.com&amp;blog=8581492&amp;post=18&amp;subd=iloveswimming&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>  埋线法</p>
<p>我院有很多种埋线法，和过去使用的各种方法相比，现在采用了更先进的，更容易保持双眼皮的方法。<br />
一般来说，埋线法是利用很细的线做出双眼皮形状的手术方法，该手术方法有比较简单，不会出现肿胀的优点。</p>
<p>眼睛上部脂肪不多，眼皮较薄，没有下垂皮肤时，患者比较适合做该手术，并能取得较好的手术效果。</p>
<p>在患者眼皮上切开1-2毫米的切口或不通过切口都可以进行手术。</p>
<p>手术时间较短，肿胀程度也较小，大部分经过3天即可痊愈。</p>
<p>但是，眼皮下垂较厉害时，采用切开法较好，脂肪较多时，采用部分切开法或切开法可以取得更好的效果。</p>
<p><strong> 前开</strong><strong></strong></p>
<p>前开是针对于左右幅度较窄，看起来不太爽快的眼睛进行的手术。</p>
<p>现行的手术方法有三角pedicle法，Y-切开法，W-切开法等多种手术方法。</p>
<p>手术后眼睛会看起来很利索，并且能取得使眼睛左右幅度变大，使黑色瞳孔内侧的白色眼球部位显露更多的效果，看起来像对眼的假性斜视和真性内斜视，也能取得一定的矫正效果。</p>
<p>手术通过约5毫米的切口进行，不会出现肿胀，手术后4天即可拆线，可单独进行前开手术，也可将前开手术和双眼皮手术同时进行。</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iloveswimming.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iloveswimming.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iloveswimming.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iloveswimming.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iloveswimming.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iloveswimming.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iloveswimming.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iloveswimming.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iloveswimming.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iloveswimming.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iloveswimming.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iloveswimming.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iloveswimming.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iloveswimming.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iloveswimming.wordpress.com&amp;blog=8581492&amp;post=18&amp;subd=iloveswimming&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iloveswimming.wordpress.com/2009/07/15/%e7%9c%bc%e9%83%a8%e6%95%b4%e5%bd%a2%e6%b3%95/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7c18398b82ea66c60a3ef18c2d787cb8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shl0586</media:title>
		</media:content>
	</item>
		<item>
		<title>안녕하세요???</title>
		<link>http://iloveswimming.wordpress.com/2009/07/15/hello-world/</link>
		<comments>http://iloveswimming.wordpress.com/2009/07/15/hello-world/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 08:25:30 +0000</pubDate>
		<dc:creator>shl0586</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[수영과 다이빙, 자전거와 등산을 좋아하는 사람입니다. 노우하우와 기록들을 공유하는 공간으로 만들어 나가려고 합니다. 좋은 정보있으면 공유해요..<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iloveswimming.wordpress.com&amp;blog=8581492&amp;post=1&amp;subd=iloveswimming&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>수영과 다이빙, 자전거와 등산을 좋아하는 사람입니다.</p>
<p>노우하우와 기록들을 공유하는 공간으로 만들어 나가려고 합니다.</p>
<p>좋은 정보있으면 공유해요..</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iloveswimming.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iloveswimming.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iloveswimming.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iloveswimming.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iloveswimming.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iloveswimming.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iloveswimming.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iloveswimming.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iloveswimming.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iloveswimming.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iloveswimming.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iloveswimming.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iloveswimming.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iloveswimming.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iloveswimming.wordpress.com&amp;blog=8581492&amp;post=1&amp;subd=iloveswimming&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iloveswimming.wordpress.com/2009/07/15/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7c18398b82ea66c60a3ef18c2d787cb8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shl0586</media:title>
		</media:content>
	</item>
	</channel>
</rss>
