<?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>Newbie Website Design &#187; Design and Layout</title>
	<atom:link href="http://www.newbiewebsitedesign.com/category/website-design-layout/feed" rel="self" type="application/rss+xml" />
	<link>http://www.newbiewebsitedesign.com</link>
	<description></description>
	<lastBuildDate>Fri, 23 Oct 2009 23:40:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>HTML line break tag &#8211; when and how to use it</title>
		<link>http://www.newbiewebsitedesign.com/html-line-break-tag-cod</link>
		<comments>http://www.newbiewebsitedesign.com/html-line-break-tag-cod#comments</comments>
		<pubDate>Tue, 04 Aug 2009 13:16:20 +0000</pubDate>
		<dc:creator>David Radtke - Admin</dc:creator>
				<category><![CDATA[Design and Layout]]></category>
		<category><![CDATA[Glossary of Confusing Stuff]]></category>
		<category><![CDATA[HTML / CSS]]></category>

		<guid isPermaLink="false">http://www.newbiewebsitedesign.com/?p=1629</guid>
		<description><![CDATA[A lot of beginners to website design want to know how to create a line break using HTML. And while the tag used to create a line break is easy to remember, knowing when and how to use it correctly is a little more complicated. In addition, there are many times when you shouldn&#8217;t even [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.newbiewebsitedesign.com/wp-content/uploads/2009/08/html-line-break-code.jpg" alt="HTML line break code" title="HTML line break code" width="144" height="123" class="leftphoto" />A lot of beginners to website design want to know how to create a line break using HTML. And while the tag used to create a line break is easy to remember, knowing when and how to use it correctly is a little more complicated. In addition, there are many times when you shouldn&#8217;t even use the HTML line break code at all.</p>
<p>In this post we&#8217;ll take a look at line breaks, what is the HTML tag for one, and when to <em>and not to</em> use them.</p>
<p>(By the way, if this is your first time visiting Newbie Website Design, then I encourage you to check out the <a href="/category/my-first-website">My First Website series</a> to learn how to build websites the right way.)</p>
<p>Let&#8217;s get learn more about HTML line breaks, shall we?</p>
<p><span id="more-1629"></span></p>
<h2>What is a line break?</h2>
<p>A <strong>line break</strong> is a special HTML tag that will force the very next the next character (or sentence or paragraph) to appear on a new line right below the one above. It is similar to pressing the &#8220;return&#8221; key when using a word processor.</p>
<h2>It isn&#8217;t gonna work</h2>
<p>If you&#8217;re using a text editing program like Notepad (Windows) or TextEdit (Mac) to write the HTML for your website, then pressing the return key in order to create line breaks isn&#8217;t going to work. You could press the return key a hundred times and you still won&#8217;t see those line breaks when you view your website with a browser. To get the desired line-breaking space that you want you either have to use the special HTML line break code or use <a href="/cascading-style-sheets-css">CSS</a> to do it for you.</p>
<h2>The HTML for a line break</h2>
<p>Here&#8217;s the HTML tag you need in order to make a line break:</p>
<div class="codesnippet">
&lt;br /&gt;
</div>
<p>Pretty simple, huh? Just plop this where you want a line break and you&#8217;re done!</p>
<p>Or are you&#8230;</p>
<h2>The wrong way to do line breaks</h2>
<p>Now, before you go adding the HTML line break code all over your layout, just remember this: if you ever decide to change the design of your website, then you may have to go through <em>all of your pages</em> and do some nasty hunt and replace.</p>
<p><em>For example:</em></p>
<p>Let&#8217;s say that you added two line breaks after all of the <strong>&lt;h1&gt;</strong> heading tags on your website. Later, if you decide that you only want one line break after the heading tags, then you have to erase all of the extra HTML line break code from every page. And if you have added line breaks after subheadings, paragraphs, and other layout elements, then let the editing nightmare begin!</p>
<h2>The better way to do line breaks</h2>
<p>Instead of relying on HTML for your line breaks, let an external CSS file handle the task. You won&#8217;t be using the <strong>&lt;br /&gt;</strong> tag. In its place you&#8217;ll be using a <strong>padding-bottom</strong> to get the job done right. By using CSS in an external file, you can control the height of this &#8220;padding&#8221; all throughout your website from one location.</p>
<p>(NOTE: to learn more about what an external CSS file is and how to make one, I strongly suggest going through the <a href="/category/my-first-website">My First Website series</a> here on Newbie Website Design. Post #5 talks specifically about how to add an <a href="/adding-css-to-a-website">external CSS file</a>. )</p>
<h2>The &#8220;non line break&#8221; line break</h2>
<p>Okay. Okay. So we&#8217;re not technically going to be adjusting the line breaks. But what we are going to do is control how much white space occurs after an element such as a heading or a paragraph. We do this by using <strong>padding-bottom</strong> in our CSS. It&#8217;s easy. Take a look:</p>
<div class="codesnippet">
h1 {<br />
&nbsp;&nbsp;&nbsp;&nbsp;padding-bottom: 20px;<br />
}
</div>
<p>This CSS simply tells the browser that all <strong>&lt;h1&gt;</strong> headings will have an extra 20 pixels of padding below it &mdash; right after the closing <strong>&lt;/h1&gt;</strong> tag. Any text that follows the heading will be pushed down by 20 pixels. You can do this after paragraphs, too:</p>
<div class="codesnippet">
p {<br />
&nbsp;&nbsp;&nbsp;&nbsp;padding-bottom: 15px;<br />
}
</div>
<p>The <strong>p</strong> represents the paragraph tags in your HTML. After a closing paragraph tag (<strong>&lt;/p&gt;</strong>) the very next element &mdash; be it a subheading or another paragraph &mdash; is pushed down 15 pixels.</p>
<h2>When to use an HTML line break</h2>
<p>Personally, there are only two times when I use an actual HTML line break in my designs&#8230;</p>
<h3>#1: One-shot deals</h3>
<p>If I need a little extra space in a design and I know 100% for certain that it won&#8217;t be repeated on other web pages I&#8217;ll use the <strong>&lt;br /&gt;</strong> tag. Before you add an HTML line break, be certain that it will never become a repeated part of every page of your layout.</p>
<h3>#2: Proper text layout</h3>
<p>There are times when you just have to make sure that the text of your layout flows correctly. Since all browsers won&#8217;t display your text exactly the same way, you can use HTML line breaks to ensure a clean look. A good example of this is when you have a centered heading that contains a lot of text. For example, this looks just horrible:</p>
<p><center><br />
<img src="http://www.newbiewebsitedesign.com/wp-content/uploads/2009/08/heading-bad.gif" alt="heading-bad" title="heading-bad" width="450" height="77" /><br />
</center></p>
<p>The word &#8220;system&#8221; hangs like deadweight at the bottom &mdash; stranded and all alone. But with a few line breaks we can make it look much, much better:</p>
<p><center><br />
<img src="http://www.newbiewebsitedesign.com/wp-content/uploads/2009/08/heading-good.gif" alt="heading-good" title="heading-good" width="398" height="78" /><br />
</center></p>
<p>Here&#8217;s the code (keep your eyes peeled for the HTML line break code):</p>
<div class="codesnippet">
&lt;h1&gt;Lose 20 pounds in 5 days with&lt;br /&gt;our 100% safe, all-natural&lt;br /&gt;weight-loss system!&lt;/h1&gt;
</div>
<h2>Conclusion</h2>
<p>Line breaks aren&#8217;t that hard to create with HTML. Because of that, they are extremely easy to add to a design. The downside is that by using them too much you might make updating or altering your website&#8217;s design and layout a major pain down the road. Start off right by adjusting the <strong>padding-bottom</strong> in an external CSS file and all future headaches will never cross your furrowed brow.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.newbiewebsitedesign.com/html-line-break-tag-cod/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The best website fonts for legibility</title>
		<link>http://www.newbiewebsitedesign.com/best-website-fonts-legibility</link>
		<comments>http://www.newbiewebsitedesign.com/best-website-fonts-legibility#comments</comments>
		<pubDate>Sun, 02 Aug 2009 04:19:57 +0000</pubDate>
		<dc:creator>David Radtke - Admin</dc:creator>
				<category><![CDATA[Design and Layout]]></category>

		<guid isPermaLink="false">http://www.newbiewebsitedesign.com/?p=1498</guid>
		<description><![CDATA[In a previous post titled The best fonts for websites, I talked about how to choose the best fonts for your website so that no matter which operating system your visitor is using (Windows, Mac, Linux, etc.) or which version (Windows 98, XP, Vista, Mac OS 8 through 10.5) they will be able to see [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.newbiewebsitedesign.com/wp-content/uploads/2009/08/legibility.jpg" alt="Best fonts for website legibility" title="Best fonts for website legibility" width="118" height="139" class="leftphoto" />In a previous post titled <a href="best-fonts-for-websites-web-safe-fonts">The best fonts for websites</a>, I talked about how to choose the best fonts for your website so that no matter which operating system your visitor is using (Windows, Mac, Linux, etc.) or which version (Windows 98, XP, Vista, Mac OS 8 through 10.5) they will be able to see exactly what you intended.</p>
<p>In this post, however, I&#8217;d like to talk about which <em>font style</em> is best for legibility (i.e. which font is easiest to read on a computer monitor.) But before reading deeper into this post, I encourage you to check out the post mentioned above (<a href="best-fonts-for-websites-web-safe-fonts">The best fonts for websites</a>) as well as the post titled <a href="/different-types-of-fonts">Different types of fonts</a>. They both contain information that will help you understand this post.</p>
<p>All done? Ok! Let&#8217;s uncover which fonts are best for website legibility:</p>
<p><span id="more-1498"></span></p>
<h2>Serif fonts: The crowned ruler of the paper kingdom</h2>
<p>If you&#8217;ve ever read a typical magazine or book (that was actually printed on paper <img src='http://www.newbiewebsitedesign.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ), then you will have seen a <strong>serif font</strong> in action. Serif fonts &mdash; the kind of fonts with the little &#8220;slashes&#8221; at the ends of the letter strokes &mdash; are the best fonts for the printed word. Why is that? Because the little serifs actually help to make the letters flow together and make reading much easier on the eyes. Some common serif fonts that you probably know include <em>Times New Roman</em> and <em>Georgia</em>.</p>
<h2>The computer monitor conundrum</h2>
<p>There is one thing that many computer monitors lack that makes using the above mentioned serif fonts the perfect choice for your website: adequate resolution. <strong>Resolution</strong> is basically how many pixels your monitor can display. The more pixels there are, the more details you can have. For example: my monitor has a resolution of 1600 x 1050 (which is pretty darn good.) But not everyone has such a high resolution monitor. And in order for those little serifs to make reading easier, a large amount of detail is required. </p>
<p>Back in the day (which, in computer years, means about 10 years ago), the best monitor resolution was around 800 x 600. Not that great for serif fonts. And nowadays, devices like Apple&#8217;s iPhone (320 x 480) and the new genre of computers called <strong>netbooks</strong> (most being 800×480) &mdash; both of which can be used to surf the Internet &mdash; also have a somewhat &#8220;limited&#8221; resolution to accurately display those detailed serif fonts.</p>
<h2>Sans Serif fonts: The masters of all computer monitors</h2>
<p>Since not everyone has a high-resolution monitor to surf the Internet, we&#8217;ll have to avoid using serif fonts on our websites if we truly want the pure text (i.e. the sentences and full paragraphs of text) to be easy to read and easy on the eyes. That&#8217;s where the Sans Serif fonts come to the rescue.</p>
<p>For many years, sans serif fonts have been the main style of font used for the pure text of websites. Since they all lack the little &#8220;slashes&#8221; of the serif fonts, they don&#8217;t become garbled on lower-resolution monitors. This makes them the perfect choice for the pure text of your website.</p>
<p>Looking at the first list from the post titled <a href="best-fonts-for-websites-web-safe-fonts">The best fonts for websites</a> you can see only four serif fonts that all operating systems of all recent versions can display. Those are:</p>
<ul>
<li>Arial</li>
<li>Helvetica</li>
<li>Trebuchet MS</li>
<li>Verdana</li>
</ul>
<p>If you stick to using one of these for the pure text of your website&#8217;s content, then you will have almost guaranteed the legibility of your text. Your visitors may not directly thank you for it, but they will be much happier when reading the inspiring words you so arduously brought forth from the creative depths of your mind.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.newbiewebsitedesign.com/best-website-fonts-legibility/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The best colors for a website&#8217;s content</title>
		<link>http://www.newbiewebsitedesign.com/best-colors-for-website</link>
		<comments>http://www.newbiewebsitedesign.com/best-colors-for-website#comments</comments>
		<pubDate>Thu, 30 Jul 2009 14:20:30 +0000</pubDate>
		<dc:creator>David Radtke - Admin</dc:creator>
				<category><![CDATA[Design and Layout]]></category>
		<category><![CDATA[Newbie Design Mistakes]]></category>

		<guid isPermaLink="false">http://www.newbiewebsitedesign.com/?p=1449</guid>
		<description><![CDATA[Nothing can influence your website&#8217;s visitors more than its colors. Colors create the mood and set the matching tone for your content. The right colors in the right places can excite, inspire, and encourage your visitors to dig deeper into your website. On the flip side, the wrong colors in the important places can destroy [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.newbiewebsitedesign.com/wp-content/uploads/2009/07/eye.jpg" alt="eye" title="eye" width="118" height="139" class="leftphoto" />Nothing can influence your website&#8217;s visitors more than its colors. Colors create the mood and set the matching tone for your content. The right colors in the right places can excite, inspire, and encourage your visitors to dig deeper into your website. On the flip side, the <em>wrong colors</em> in the important places can destroy all of the hard work you put into the graphic elements of your website design.</p>
<p>Many beginners to website design ask &#8220;<em>What are the best colors for a website design?&#8221;</em> Well, before you can even decide a total color pallet for your website, you need to know <strong>what are the best colors for your website&#8217;s content</strong>.</p>
<p>After reading this post, you&#8217;ll know.</p>
<p><span id="more-1449"></span></p>
<h2>It&#8217;s all about the eyes</h2>
<p>What&#8217;s the number one reason a person visits your website? Is it for the ultra-cool graphics and design? Nope. People come to your site for one thing only: <em>to read your content</em>. Granted, your eye-popping graphics many intrigue a visitor enough not to click the back button on their browser right away. But if your <strong>content</strong> (the main text of your website) is hard to read, then they&#8217;ll abandon your website and you will have just lost a visitor for good.</p>
<p>Choosing the best colors your website begins with choosing the best colors for your website&#8217;s content &mdash; colors that make reading easy on the eyes. But just what are the best colors? Before getting into that, let&#8217;s look at some bad color choices.</p>
<h2>What not to do</h2>
<p>If you really want to strain people&#8217;s eyes and annoy them to extremes, then by all means do any one of the following:</p>
<ul>
<li>Put white or light text on black or dark background</li>
<li>Use two colors that have little contrast between them</li>
<li>Have lots of black text on a yellow background</li>
</ul>
<p>Take a look at this example:<br />
<center></p>
<div style="width: 400px; padding: 15px; color: #FFFFFF; background-color: #000000; text-align: left;">
Here is an example of white text on a black background. Many gothic, grunge, and (sadly) graphic design websites use this. Unfortunately, if the visitor is going to have to read a lot of text like this, it WILL put a strain the eyes. How do I know? Years of research in the field of website usability has proven so.
</div>
<p></center></p>
<p>I don&#8217;t know about you, but reading that white text on a black background really bugged me. And you know what? It bugs most website visitors. </p>
<p>Here&#8217;s another:<br />
<center></p>
<div style="width: 400px; padding: 15px; color: #3399CC; background-color: #66CCFF; text-align: left">
I actually visited a website that used these colors for the background and the text. Maybe the designer thought it added a feeling of calming serenity to the site. But I just ended up getting a splitting headache trying to read line after line of the stuff.
</div>
<p></center></p>
<p>One more:<br />
<center></p>
<div style="width: 400px; padding: 15px; color: #000000; background-color: #FFFF99; text-align: left">
Having a yellow background with black text might not seem too bad, but it has been proven to cause eye-strain if the majority of the content is displayed this way. Use this only when you want to draw attention to short sections of text.
</div>
<p></center></p>
<h2>The best colors for a website&#8217;s content</h2>
<p>I realize that it might not be the most flashy and eye-catching, but the best colors for a website&#8217;s content are black or dark-gray text on a white or very light, pastel-colored background. These combinations create the right amount of contrast for reading while avoiding or lessening the strain on the eyes. (By the way, Newbie Website Design uses dark-gray text on a white background. The headings and bolded text are in black.)</p>
<h2>Final thoughts</h2>
<p>As stated above, the main reason people visit your website is to read your content. Even if your graphics are stunning and the design is top-notch, no one will stick around or visit again if the text is hard to read. Make it easy for them by choosing dark text colors on a very light or white background.</p>
<p>Now, the only thing you need to worry about is writing good content! <img src='http://www.newbiewebsitedesign.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.newbiewebsitedesign.com/best-colors-for-website/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What are web safe &#8220;hex&#8221; colors? (Plus an HTML color chart!)</title>
		<link>http://www.newbiewebsitedesign.com/what-are-web-safe-hex-colors-html-chart</link>
		<comments>http://www.newbiewebsitedesign.com/what-are-web-safe-hex-colors-html-chart#comments</comments>
		<pubDate>Wed, 29 Jul 2009 12:40:47 +0000</pubDate>
		<dc:creator>David Radtke - Admin</dc:creator>
				<category><![CDATA[Design and Layout]]></category>
		<category><![CDATA[Glossary of Confusing Stuff]]></category>

		<guid isPermaLink="false">http://www.newbiewebsitedesign.com/?p=1386</guid>
		<description><![CDATA[As a beginner at website design, I remember the first time I encountered phrases like &#8220;web safe colors&#8221;, &#8220;HTML colors&#8221; and &#8220;hex colors.&#8221; Obviously the last term, &#8220;hex colors&#8221;, has nothing to do with using colors to bring ill-fortune to those so-called friends who wronged me in the past. But as a newbie to website [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.newbiewebsitedesign.com/wp-content/uploads/2009/07/html-hex-colors.jpg" alt="Chart of web safe hex colors" title="Chart of web safe hex colors" width="118" height="139" class="leftphoto" />As a beginner at website design, I remember the first time I encountered phrases like &#8220;web safe colors&#8221;, &#8220;HTML colors&#8221; and &#8220;hex colors.&#8221; Obviously the last term, &#8220;hex colors&#8221;, has nothing to do with using colors to bring ill-fortune to those so-called friends who wronged me in the past. But as a newbie to website design, how was I to know the truth? <img src='http://www.newbiewebsitedesign.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>In this post, I&#8217;ll clear up exactly what web safe and HTML colors are and what exactly are &#8220;hex colors&#8221; (a.k.a. hexadecimal colors).</p>
<p>So put down your voodoo dolls and let&#8217;s get into it!</p>
<p><span id="more-1386"></span></p>
<h2>What are web safe html colors?</h2>
<p>Back in the day when not everyone had monitors that could display millions of colors, a consensus was made as to which colors should be supported in browsers. In total, they came to 216 colors. By using these colors (called <strong>web safe colors</strong>) designers could be sure that there websites would look the same on all computers, all browsers, and all operating systems.</p>
<p>Nowadays, there really isn&#8217;t much of a need for web safe colors, but it still doesn&#8217;t hurt to use them for background color and text color. Although, you will need to understand the hex (hexadecimal) numbering system when you create your CSS file since CSS uses hexadecimal numbers for color.</p>
<h2>What are hex (hexadecimal) numbers?</h2>
<p>First, let me relieve your boggled mind by saying that you really don&#8217;t need to know how to count in hex (hexadecimal) in order to get different colors on your web pages. There are many ways to get the code (more on that in a bit.) But for the inquisitive mind, here is the answer to the above question:</p>
<p>Hexadecimal numbers are made from 10 digits (0 1 2 3 4 5 6 7 8 9) and these six letters: A B C D E F. They are combined together to make a 6-digit code that represents a color. (Hence the name &#8220;hex&#8221; or &#8220;hexadecimal&#8221;&#8230; which means &#8220;6&#8243;.) Here are some examples:</p>
<p><span style="color: #000000; font-weight: bold;">#000000 (black color)</span><br />
<span style="color: #FF0000; font-weight: bold;">#FF0000 (red)</span><br />
<span style="color: #00FF00; font-weight: bold;">#00FF00 (green)</span><br />
<span style="color: #0000FF; font-weight: bold;">#0000FF (blue)</span><br />
<span style="color: #FFFFFF; font-weight: bold; background-color: #000000;">#FFFFFF (white)</p>
<h2>Getting those nasty-looking hex color codes</h2>
<p>If you use Photoshop, then you can find the hex color codes by looking on the lower right-hand corner of the color picker window (NOTE: your color picker in Photoshop may look different depending on your settings):</p>
<p><img src="http://www.newbiewebsitedesign.com/wp-content/uploads/2009/07/photoshop-hex1.jpg" alt="photoshop-hex" title="photoshop-hex" width="500" height="343" class="alignnone size-full wp-image-1428" /><br />
<br/><br/><br />
If you&#8217;d like to lock Photoshop into using only the web safe html colors, then check the box in the lower left-hand corner. Like this:</p>
<p><img src="http://www.newbiewebsitedesign.com/wp-content/uploads/2009/07/photoshop-web1.jpg" alt="photoshop-web" title="photoshop-web" width="500" height="340" class="alignnone size-full wp-image-1429" /><br />
<br/><br/></p>
<p>If you don&#8217;t have Photoshop (or don&#8217;t need to use it when you&#8217;re just hand-coding a website) then there are many free software programs for both Mac and Windows that you can download from the Internet.</p>
<h2>Web safe html color chart</h2>
<p>No post on web safe colors would be complete without a chart of HTML color codes. So, here it is:<br />
<br/><br/></p>
<table>
<tr>
<td valign="top">
<table  cellspacing="2" cellpadding="2" class="color_table">
<tr>
<td bgcolor="#eceae1"> <b>Hex Code</b>
</td>
<td bgcolor="#eceae1"> <b>Color</b>
</td>
</tr>
<tr>
<td> #FFFFFF
</td>
<td bgcolor="#FFFFFF">
</td>
</tr>
<tr>
<td> #FFFFCC
</td>
<td bgcolor="#FFFFCC">
</td>
</tr>
<tr>
<td> #FFFF99
</td>
<td bgcolor="#FFFF99">
</td>
</tr>
<tr>
<td> #FFFF66
</td>
<td bgcolor="#FFFF66">
</td>
</tr>
<tr>
<td> #FFFF33
</td>
<td bgcolor="#FFFF33">
</td>
</tr>
<tr>
<td> #FFFF00
</td>
<td bgcolor="#FFFF00">
</td>
</tr>
<tr>
<td> #FFCCFF
</td>
<td bgcolor="#FFCCFF">
</td>
</tr>
<tr>
<td> #FFCCCC
</td>
<td bgcolor="#FFCCCC">
</td>
</tr>
<tr>
<td> #FFCC99
</td>
<td bgcolor="#FFCC99">
</td>
</tr>
<tr>
<td> #FFCC66
</td>
<td bgcolor="#FFCC66">
</td>
</tr>
<tr>
<td> #FFCC33
</td>
<td bgcolor="#FFCC33">
</td>
</tr>
<tr>
<td> #FFCC00
</td>
<td bgcolor="#FFCC00">
</td>
</tr>
<tr>
<td> #FF99FF
</td>
<td bgcolor="#FF99FF">
</td>
</tr>
<tr>
<td> #FF99CC
</td>
<td bgcolor="#FF99CC">
</td>
</tr>
<tr>
<td> #FF9999
</td>
<td bgcolor="#FF9999">
</td>
</tr>
<tr>
<td> #FF9966
</td>
<td bgcolor="#FF9966">
</td>
</tr>
<tr>
<td> #FF9933
</td>
<td bgcolor="#FF9933">
</td>
</tr>
<tr>
<td> #FF9900
</td>
<td bgcolor="#FF9900">
</td>
</tr>
<tr>
<td> #FF66FF
</td>
<td bgcolor="#FF66FF">
</td>
</tr>
<tr>
<td> #FF66CC
</td>
<td bgcolor="#FF66CC">
</td>
</tr>
<tr>
<td> #FF66CC
</td>
<td bgcolor="#FF66CC">
</td>
</tr>
<tr>
<td> #FF6666
</td>
<td bgcolor="#FF6666">
</td>
</tr>
<tr>
<td> #FF6633
</td>
<td bgcolor="#FF6633">
</td>
</tr>
<tr>
<td> #FF6600
</td>
<td bgcolor="#FF6600">
</td>
</tr>
<tr>
<td> #FF33FF
</td>
<td bgcolor="#FF33FF">
</td>
</tr>
<tr>
<td> #FF33CC
</td>
<td bgcolor="#FF33CC">
</td>
</tr>
<tr>
<td> #FF3399
</td>
<td bgcolor="#FF3399">
</td>
</tr>
<tr>
<td> #FF3399
</td>
<td bgcolor="#FF3399">
</td>
</tr>
<tr>
<td> #FF3333
</td>
<td bgcolor="#FF3333">
</td>
</tr>
<tr>
<td> #FF3300
</td>
<td bgcolor="#FF3300">
</td>
</tr>
<tr>
<td> #FF00FF
</td>
<td bgcolor="#FF00FF">
</td>
</tr>
<tr>
<td> #FF00CC
</td>
<td bgcolor="#FF00CC">
</td>
</tr>
<tr>
<td> #FF0099
</td>
<td bgcolor="#FF0099">
</td>
</tr>
<tr>
<td> #FF0066
</td>
<td bgcolor="#FF0066">
</td>
</tr>
<tr>
<td> #FF0033
</td>
<td bgcolor="#FF0033">
</td>
</tr>
<tr>
<td> #FF0000
</td>
<td bgcolor="#FF0000">
</td>
</tr>
<tr>
<td bgcolor="#eceae1"> <b>Hex Code</b>
</td>
<td bgcolor="#eceae1"> <b>Color</b>
</td>
</tr>
<tr>
<td> #66FFFF
</td>
<td bgcolor="#66FFFF">
</td>
</tr>
<tr>
<td> #66FFCC
</td>
<td bgcolor="#66FFCC">
</td>
</tr>
<tr>
<td> #66FF99
</td>
<td bgcolor="#66FF99">
</td>
</tr>
<tr>
<td> #66FF66
</td>
<td bgcolor="#66FF66">
</td>
</tr>
<tr>
<td> #66FF33
</td>
<td bgcolor="#66FF33">
</td>
</tr>
<tr>
<td> #66FF00
</td>
<td bgcolor="#66FF00">
</td>
</tr>
<tr>
<td> #66CCFF
</td>
<td bgcolor="#66CCFF">
</td>
</tr>
<tr>
<td> #66CCCC
</td>
<td bgcolor="#66CCCC">
</td>
</tr>
<tr>
<td> #66CC99
</td>
<td bgcolor="#66CC99">
</td>
</tr>
<tr>
<td> #66CC66
</td>
<td bgcolor="#66CC66">
</td>
</tr>
<tr>
<td> #66CC33
</td>
<td bgcolor="#66CC33">
</td>
</tr>
<tr>
<td> #66CC00
</td>
<td bgcolor="#66CC00">
</td>
</tr>
<tr>
<td> #6699FF
</td>
<td bgcolor="#6699FF">
</td>
</tr>
<tr>
<td> #6699CC
</td>
<td bgcolor="#6699CC">
</td>
</tr>
<tr>
<td> #669999
</td>
<td bgcolor="#669999">
</td>
</tr>
<tr>
<td> #669966
</td>
<td bgcolor="#669966">
</td>
</tr>
<tr>
<td> #669933
</td>
<td bgcolor="#669933">
</td>
</tr>
<tr>
<td> #669900
</td>
<td bgcolor="#669900">
</td>
</tr>
<tr>
<td> #6666FF
</td>
<td bgcolor="#6666FF">
</td>
</tr>
<tr>
<td> #6666CC
</td>
<td bgcolor="#6666CC">
</td>
</tr>
<tr>
<td> #666699
</td>
<td bgcolor="#666699">
</td>
</tr>
<tr>
<td> #666666
</td>
<td bgcolor="#666666">
</td>
</tr>
<tr>
<td> #666633
</td>
<td bgcolor="#666633">
</td>
</tr>
<tr>
<td> #666600
</td>
<td bgcolor="#666600">
</td>
</tr>
<tr>
<td> #6633FF
</td>
<td bgcolor="#6633FF">
</td>
</tr>
<tr>
<td> #6633CC
</td>
<td bgcolor="#6633CC">
</td>
</tr>
<tr>
<td> #663399
</td>
<td bgcolor="#663399">
</td>
</tr>
<tr>
<td> #663366
</td>
<td bgcolor="#663366">
</td>
</tr>
<tr>
<td> #663333
</td>
<td bgcolor="#663333">
</td>
</tr>
<tr>
<td> #663300
</td>
<td bgcolor="#663300">
</td>
</tr>
<tr>
<td> #6600FF
</td>
<td bgcolor="#6600FF">
</td>
</tr>
<tr>
<td> #6600CC
</td>
<td bgcolor="#6600CC">
</td>
</tr>
<tr>
<td> #660099
</td>
<td bgcolor="#660099">
</td>
</tr>
<tr>
<td> #660066
</td>
<td bgcolor="#660066">
</td>
</tr>
<tr>
<td> #660033
</td>
<td bgcolor="#660033">
</td>
</tr>
<tr>
<td> #660000
</td>
<td bgcolor="#660000">
</td>
</tr>
</table>
</td>
<td valign="top">
<table width="100%" cellspacing="2" cellpadding="2" class="color_table">
<tr>
<td bgcolor="#eceae1"> <b>Hex Code</b>
</td>
<td bgcolor="#eceae1"> <b>Color</b>
</td>
</tr>
<tr>
<td> #CCFFFF
</td>
<td bgcolor="#CCFFFF">
</td>
</tr>
<tr>
<td> #CCFFCC
</td>
<td bgcolor="#CCFFCC">
</td>
</tr>
<tr>
<td> #CCFF99
</td>
<td bgcolor="#CCFF99">
</td>
</tr>
<tr>
<td> #CCFF66
</td>
<td bgcolor="#CCFF66">
</td>
</tr>
<tr>
<td> #CCFF33
</td>
<td bgcolor="#CCFF33">
</td>
</tr>
<tr>
<td> #CCFF00
</td>
<td bgcolor="#CCFF00">
</td>
</tr>
<tr>
<td> #CCCCFF
</td>
<td bgcolor="#CCCCFF">
</td>
</tr>
<tr>
<td> #CCCCCC
</td>
<td bgcolor="#CCCCCC">
</td>
</tr>
<tr>
<td> #CCCC99
</td>
<td bgcolor="#CCCC99">
</td>
</tr>
<tr>
<td> #CCCC66
</td>
<td bgcolor="#CCCC66">
</td>
</tr>
<tr>
<td> #CCCC33
</td>
<td bgcolor="#CCCC33">
</td>
</tr>
<tr>
<td> #CCCC00
</td>
<td bgcolor="#CCCC00">
</td>
</tr>
<tr>
<td> #CC99FF
</td>
<td bgcolor="#CC99FF">
</td>
</tr>
<tr>
<td> #CC99CC
</td>
<td bgcolor="#CC99CC">
</td>
</tr>
<tr>
<td> #CC9999
</td>
<td bgcolor="#CC9999">
</td>
</tr>
<tr>
<td> #CC9966
</td>
<td bgcolor="#CC9966">
</td>
</tr>
<tr>
<td> #CC9933
</td>
<td bgcolor="#CC9933">
</td>
</tr>
<tr>
<td> #CC9900
</td>
<td bgcolor="#CC9900">
</td>
</tr>
<tr>
<td> #CC66FF
</td>
<td bgcolor="#CC66FF">
</td>
</tr>
<tr>
<td> #CC66CC
</td>
<td bgcolor="#CC66CC">
</td>
</tr>
<tr>
<td> #CC6699
</td>
<td bgcolor="#CC6699">
</td>
</tr>
<tr>
<td> #CC6666
</td>
<td bgcolor="#CC6666">
</td>
</tr>
<tr>
<td> #CC6633
</td>
<td bgcolor="#CC6633">
</td>
</tr>
<tr>
<td> #CC6600
</td>
<td bgcolor="#CC6600">
</td>
</tr>
<tr>
<td> #CC33FF
</td>
<td bgcolor="#CC33FF">
</td>
</tr>
<tr>
<td> #CC33CC
</td>
<td bgcolor="#CC33CC">
</td>
</tr>
<tr>
<td> #CC3399
</td>
<td bgcolor="#CC3399">
</td>
</tr>
<tr>
<td> #CC3366
</td>
<td bgcolor="#CC3366">
</td>
</tr>
<tr>
<td> #CC3333
</td>
<td bgcolor="#CC3333">
</td>
</tr>
<tr>
<td> #CC3300
</td>
<td bgcolor="#CC3300">
</td>
</tr>
<tr>
<td> #CC00FF
</td>
<td bgcolor="#CC00FF">
</td>
</tr>
<tr>
<td> #CC00CC
</td>
<td bgcolor="#CC00CC">
</td>
</tr>
<tr>
<td> #CC0099
</td>
<td bgcolor="#CC0099">
</td>
</tr>
<tr>
<td> #CC0066
</td>
<td bgcolor="#CC0066">
</td>
</tr>
<tr>
<td> #CC0033
</td>
<td bgcolor="#CC0033">
</td>
</tr>
<tr>
<td> #CC0000
</td>
<td bgcolor="#CC0000">
</td>
</tr>
<tr>
<td bgcolor="#eceae1"> <b>Hex Code</b>
</td>
<td bgcolor="#eceae1"> <b>Color</b>
</td>
</tr>
<tr>
<td> #33FFFF
</td>
<td bgcolor="#33FFFF">
</td>
</tr>
<tr>
<td> #33FFCC
</td>
<td bgcolor="#33FFCC">
</td>
</tr>
<tr>
<td> #33FF99
</td>
<td bgcolor="#33FF99">
</td>
</tr>
<tr>
<td> #33FF66
</td>
<td bgcolor="#33FF66">
</td>
</tr>
<tr>
<td> #33FF33
</td>
<td bgcolor="#33FF33">
</td>
</tr>
<tr>
<td> #33FF00
</td>
<td bgcolor="#33FF00">
</td>
</tr>
<tr>
<td> #33CCFF
</td>
<td bgcolor="#33CCFF">
</td>
</tr>
<tr>
<td> #33CCCC
</td>
<td bgcolor="#33CCCC">
</td>
</tr>
<tr>
<td> #33CC99
</td>
<td bgcolor="#33CC99">
</td>
</tr>
<tr>
<td> #33CC66
</td>
<td bgcolor="#33CC66">
</td>
</tr>
<tr>
<td> #33CC33
</td>
<td bgcolor="#33CC33">
</td>
</tr>
<tr>
<td> #33CC00
</td>
<td bgcolor="#33CC00">
</td>
</tr>
<tr>
<td> #3399FF
</td>
<td bgcolor="#3399FF">
</td>
</tr>
<tr>
<td> #3399CC
</td>
<td bgcolor="#3399CC">
</td>
</tr>
<tr>
<td> #339999
</td>
<td bgcolor="#339999">
</td>
</tr>
<tr>
<td> #339966
</td>
<td bgcolor="#339966">
</td>
</tr>
<tr>
<td> #339933
</td>
<td bgcolor="#339933">
</td>
</tr>
<tr>
<td> #339900
</td>
<td bgcolor="#339900">
</td>
</tr>
<tr>
<td> #3366FF
</td>
<td bgcolor="#3366FF">
</td>
</tr>
<tr>
<td> #3366CC
</td>
<td bgcolor="#3366CC">
</td>
</tr>
<tr>
<td> #336699
</td>
<td bgcolor="#336699">
</td>
</tr>
<tr>
<td> #336666
</td>
<td bgcolor="#336666">
</td>
</tr>
<tr>
<td> #336633
</td>
<td bgcolor="#336633">
</td>
</tr>
<tr>
<td> #336600
</td>
<td bgcolor="#336600">
</td>
</tr>
<tr>
<td> #3333FF
</td>
<td bgcolor="#3333FF">
</td>
</tr>
<tr>
<td> #3333CC
</td>
<td bgcolor="#3333CC">
</td>
</tr>
<tr>
<td> #333399
</td>
<td bgcolor="#333399">
</td>
</tr>
<tr>
<td> #333366
</td>
<td bgcolor="#333366">
</td>
</tr>
<tr>
<td> #333333
</td>
<td bgcolor="#333333">
</td>
</tr>
<tr>
<td> #333300
</td>
<td bgcolor="#333300">
</td>
</tr>
<tr>
<td> #3300FF
</td>
<td bgcolor="#3300FF">
</td>
</tr>
<tr>
<td> #3300CC
</td>
<td bgcolor="#3300CC">
</td>
</tr>
<tr>
<td> #330099
</td>
<td bgcolor="#330099">
</td>
</tr>
<tr>
<td> #330066
</td>
<td bgcolor="#330066">
</td>
</tr>
<tr>
<td> #330033
</td>
<td bgcolor="#330033">
</td>
</tr>
<tr>
<td> #330000
</td>
<td bgcolor="#330000">
</td>
</tr>
</table>
</td>
<td valign="top">
<table width="100%" cellspacing="2" cellpadding="2" class="color_table">
<tr>
<td bgcolor="#eceae1"> <b>Hex Code</b>
</td>
<td bgcolor="#eceae1"> <b>Color</b>
</td>
</tr>
<tr>
<td> #99FFFF
</td>
<td bgcolor="#99FFFF">
</td>
</tr>
<tr>
<td> #99FFCC
</td>
<td bgcolor="#99FFCC">
</td>
</tr>
<tr>
<td> #99FF99
</td>
<td bgcolor="#99FF99">
</td>
</tr>
<tr>
<td> #99FF66
</td>
<td bgcolor="#99FF66">
</td>
</tr>
<tr>
<td> #99FF33
</td>
<td bgcolor="#99FF33">
</td>
</tr>
<tr>
<td> #99FF00
</td>
<td bgcolor="#99FF00">
</td>
</tr>
<tr>
<td> #99CCFF
</td>
<td bgcolor="#99CCFF">
</td>
</tr>
<tr>
<td> #99CCCC
</td>
<td bgcolor="#99CCCC">
</td>
</tr>
<tr>
<td> #99CC99
</td>
<td bgcolor="#99CC99">
</td>
</tr>
<tr>
<td> #99CC66
</td>
<td bgcolor="#99CC66">
</td>
</tr>
<tr>
<td> #99CC33
</td>
<td bgcolor="#99CC33">
</td>
</tr>
<tr>
<td> #99CC00
</td>
<td bgcolor="#99CC00">
</td>
</tr>
<tr>
<td> #9999FF
</td>
<td bgcolor="#9999FF">
</td>
</tr>
<tr>
<td> #9999CC
</td>
<td bgcolor="#9999CC">
</td>
</tr>
<tr>
<td> #999999
</td>
<td bgcolor="#999999">
</td>
</tr>
<tr>
<td> #999966
</td>
<td bgcolor="#999966">
</td>
</tr>
<tr>
<td> #999933
</td>
<td bgcolor="#999933">
</td>
</tr>
<tr>
<td> #999900
</td>
<td bgcolor="#999900">
</td>
</tr>
<tr>
<td> #9966FF
</td>
<td bgcolor="#9966FF">
</td>
</tr>
<tr>
<td> #9966CC
</td>
<td bgcolor="#9966CC">
</td>
</tr>
<tr>
<td> #996699
</td>
<td bgcolor="#996699">
</td>
</tr>
<tr>
<td> #996666
</td>
<td bgcolor="#996666">
</td>
</tr>
<tr>
<td> #996633
</td>
<td bgcolor="#996633">
</td>
</tr>
<tr>
<td> #996600
</td>
<td bgcolor="#996600">
</td>
</tr>
<tr>
<td> #9933FF
</td>
<td bgcolor="#9933FF">
</td>
</tr>
<tr>
<td> #9933CC
</td>
<td bgcolor="#9933CC">
</td>
</tr>
<tr>
<td> #993399
</td>
<td bgcolor="#993399">
</td>
</tr>
<tr>
<td> #993366
</td>
<td bgcolor="#993366">
</td>
</tr>
<tr>
<td> #993333
</td>
<td bgcolor="#993333">
</td>
</tr>
<tr>
<td> #993300
</td>
<td bgcolor="#993300">
</td>
</tr>
<tr>
<td> #9900FF
</td>
<td bgcolor="#9900FF">
</td>
</tr>
<tr>
<td> #9900CC
</td>
<td bgcolor="#9900CC">
</td>
</tr>
<tr>
<td> #990099
</td>
<td bgcolor="#990099">
</td>
</tr>
<tr>
<td> #990066
</td>
<td bgcolor="#990066">
</td>
</tr>
<tr>
<td> #990033
</td>
<td bgcolor="#990033">
</td>
</tr>
<tr>
<td> #990000
</td>
<td bgcolor="#990000">
</td>
</tr>
<tr>
<td bgcolor="#eceae1"> <b>Hex Code</b>
</td>
<td bgcolor="#eceae1"> <b>Color</b>
</td>
</tr>
<tr>
<td> #00FFFF
</td>
<td bgcolor="#00FFFF">
</td>
</tr>
<tr>
<td> #00FFCC
</td>
<td bgcolor="#00FFCC">
</td>
</tr>
<tr>
<td> #00FF99
</td>
<td bgcolor="#00FF99">
</td>
</tr>
<tr>
<td> #00FF66
</td>
<td bgcolor="#00FF66">
</td>
</tr>
<tr>
<td> #00FF33
</td>
<td bgcolor="#00FF33">
</td>
</tr>
<tr>
<td> #00FF00
</td>
<td bgcolor="#00FF00">
</td>
</tr>
<tr>
<td> #00CCFF
</td>
<td bgcolor="#00CCFF">
</td>
</tr>
<tr>
<td> #00CCCC
</td>
<td bgcolor="#00CCCC">
</td>
</tr>
<tr>
<td> #00CC99
</td>
<td bgcolor="#00CC99">
</td>
</tr>
<tr>
<td> #00CC66
</td>
<td bgcolor="#00CC66">
</td>
</tr>
<tr>
<td> #00CC33
</td>
<td bgcolor="#00CC33">
</td>
</tr>
<tr>
<td> #00CC00
</td>
<td bgcolor="#00CC00">
</td>
</tr>
<tr>
<td> #0099FF
</td>
<td bgcolor="#0099FF">
</td>
</tr>
<tr>
<td> #0099CC
</td>
<td bgcolor="#0099CC">
</td>
</tr>
<tr>
<td> #009999
</td>
<td bgcolor="#009999">
</td>
</tr>
<tr>
<td> #009966
</td>
<td bgcolor="#009966">
</td>
</tr>
<tr>
<td> #009933
</td>
<td bgcolor="#009933">
</td>
</tr>
<tr>
<td> #009900
</td>
<td bgcolor="#009900">
</td>
</tr>
<tr>
<td> #0066FF
</td>
<td bgcolor="#0066FF">
</td>
</tr>
<tr>
<td> #0066CC
</td>
<td bgcolor="#0066CC">
</td>
</tr>
<tr>
<td> #006699
</td>
<td bgcolor="#006699">
</td>
</tr>
<tr>
<td> #006666
</td>
<td bgcolor="#006666">
</td>
</tr>
<tr>
<td> #006633
</td>
<td bgcolor="#006633">
</td>
</tr>
<tr>
<td> #006600
</td>
<td bgcolor="#006600">
</td>
</tr>
<tr>
<td> #0033FF
</td>
<td bgcolor="#0033FF">
</td>
</tr>
<tr>
<td> #0033CC
</td>
<td bgcolor="#0033CC">
</td>
</tr>
<tr>
<td> #003399
</td>
<td bgcolor="#003399">
</td>
</tr>
<tr>
<td> #003366
</td>
<td bgcolor="#003366">
</td>
</tr>
<tr>
<td> #003333
</td>
<td bgcolor="#003333">
</td>
</tr>
<tr>
<td> #003300
</td>
<td bgcolor="#003300">
</td>
</tr>
<tr>
<td> #0000FF
</td>
<td bgcolor="#0000FF">
</td>
</tr>
<tr>
<td> #0000CC
</td>
<td bgcolor="#0000CC">
</td>
</tr>
<tr>
<td> #000099
</td>
<td bgcolor="#000099">
</td>
</tr>
<tr>
<td> #000066
</td>
<td bgcolor="#000066">
</td>
</tr>
<tr>
<td> #000033
</td>
<td bgcolor="#000033">
</td>
</tr>
<tr>
<td> #000000
</td>
<td bgcolor="#000000">
</td>
</tr>
</table>
</td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.newbiewebsitedesign.com/what-are-web-safe-hex-colors-html-chart/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Internet Explorer 6 must die!</title>
		<link>http://www.newbiewebsitedesign.com/internet-explorer-6-must-die</link>
		<comments>http://www.newbiewebsitedesign.com/internet-explorer-6-must-die#comments</comments>
		<pubDate>Sun, 26 Jul 2009 12:43:29 +0000</pubDate>
		<dc:creator>David Radtke - Admin</dc:creator>
				<category><![CDATA[Design and Layout]]></category>

		<guid isPermaLink="false">http://www.newbiewebsitedesign.com/?p=1293</guid>
		<description><![CDATA[I&#8217;ve been pondering for some time about writing this post. And while browsing one of my favorite blogs today I came across an article that is exactly in line with my recent thinking: IE6 Must Die for the Web to Move On
Now why am I, and millions of other website designers, being so harsh toward [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.newbiewebsitedesign.com/wp-content/uploads/2009/07/die-ie6.jpg" alt="die-ie6" title="die-ie6" width="118" height="139" class="leftphoto" />I&#8217;ve been pondering for some time about writing this post. And while browsing one of my favorite blogs today I came across an article that is exactly in line with my recent thinking: <a href="http://mashable.com/2009/07/16/ie6-must-die/">IE6 Must Die for the Web to Move On</a></p>
<p>Now why am I, and millions of other website designers, being so harsh toward Internet Explorer 6?</p>
<p>Oh&#8230; where to begin!</p>
<p>The list of negative points in many designer&#8217;s books can stretch for miles. But let me give you the highlights:</p>
<p><span id="more-1293"></span></p>
<ul>
<li>Horrible security</li>
<li>Web designers must use hacks to get their pages to look right in IE6 (a major waste of time)</li>
<li>Cannot display the more recent web technologies</li>
<li>Forces major companies to hold back in their web designs</li>
<li>No support for CSS 2.0</li>
<li>No support for .PNG image files (much better than .GIF)</li>
</ul>
<p>And that&#8217;s just the tip of the iceberg!</p>
<p><strong>Amazingly, about 27% of the visitors to NWD</strong> are using Internet Explorer 6. So, if you are one of those 27%, please, PLEASE either update to Internet Explorer 8 or try out some of the other (and in many web designer&#8217;s opinions, <strong>better</strong>) browsers like <a href="http://www.mozilla.com/">Firefox</a>, <a href="http://www.apple.com/safari/download/">Safari</a>, or <a href="http://www.opera.com/">Opera</a>.</p>
<p>Here&#8217;s the link to the full article that I read today: </p>
<p><a href="http://mashable.com/2009/07/16/ie6-must-die/" style="font-weight: bold;">IE6 Must Die for the Web to Move On</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.newbiewebsitedesign.com/internet-explorer-6-must-die/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The best fonts for websites (web safe fonts)</title>
		<link>http://www.newbiewebsitedesign.com/best-fonts-for-websites-web-safe-fonts</link>
		<comments>http://www.newbiewebsitedesign.com/best-fonts-for-websites-web-safe-fonts#comments</comments>
		<pubDate>Sun, 26 Jul 2009 07:55:52 +0000</pubDate>
		<dc:creator>David Radtke - Admin</dc:creator>
				<category><![CDATA[Design and Layout]]></category>
		<category><![CDATA[Glossary of Confusing Stuff]]></category>

		<guid isPermaLink="false">http://www.newbiewebsitedesign.com/?p=1260</guid>
		<description><![CDATA[Beginners to website design often scratch their heads in confusion and ask themselves &#8220;What are the best fonts for web design?&#8221; The answer to this question is both easy and a little complicated. You see, while there are some good fonts for websites, there are also the highly necessary standard fonts for websites as well. [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.newbiewebsitedesign.com/wp-content/uploads/2009/07/best-website-fonts.jpg" alt="The best fonts for websites" title="The best fonts for websites" width="118" height="139" class="leftphoto" />Beginners to website design often scratch their heads in confusion and ask themselves <em>&#8220;What are the best fonts for web design?&#8221;</em> The answer to this question is both easy and a little complicated. You see, while there are some good fonts for websites, there are also the highly necessary <strong>standard fonts</strong> for websites as well. Throw into the mix the fact that you can have any font on your website using images and you&#8217;ll undoubtedly scratch the hair right off your head.</p>
<p>In this post, I&#8217;d like to clear up the confusion and offer some solid &#8220;web font&#8221; advice to help make choosing your website fonts easier (and to prevent premature balding as well.)</p>
<p>Let&#8217;s begin with a little background information:</p>
<p><span id="more-1260"></span> </p>
<h2>Text vs. images</h2>
<p>The first thing you need to know is that you can safely use any font on a website<strong> provided that it is part of an image</strong>. How can you tell the difference? Easy: if you can use your mouse to select individual words or even letters of the text your see on a website, then what you have is pure text. Below is an example:<br />
<br/></p>
<h1 style="color: #cc0000;">You can easily select this text.</h1>
<p><br/><br />
But below is an image that contains text. You can&#8217;t select individual words or letters because they are part of an image:<br />
<br/><br />
<img src="http://www.newbiewebsitedesign.com/wp-content/uploads/2009/07/image-text.gif" alt="Image of text" title="Image of text" width="455" height="41" class="alignnone size-full wp-image-1264" /><br />
<br/><br />
The font used in the image above is called &#8220;Moderna&#8221; &mdash; and you probably don&#8217;t have it on your computer. But since it&#8217;s used in an image, you can see it just as I do.</p>
<p>Which brings me to the next point:</p>
<h2>If they ain&#8217;t got it, they won&#8217;t see it</h2>
<p>So, you just downloaded the coolest grunge font from your favorite free site. You then decided to make all of the main headings (&lt;h1&gt; &lt;/h1&gt; tags) on your website this font. Awesome! But when showing your masterpiece of website creativity to your friend at his house, your eyes widen in shock. <em>&#8220;Where is my font?!&#8221; </em></p>
<p>If you read the post titled <a href="/you-actually-dont-visit-websites">You actually DON&#8217;T visit websites</a> then you&#8217;d know that, in truth, websites come to you. And if you don&#8217;t have a font installed on your computer that a designer used for pure text on his website, then you won&#8217;t see that font. Instead, your browser will replace it with some other font that <em>is</em> on your computer. </p>
<h2>Common fonts for websites</h2>
<p>Since not everyone is using the same operating system, it&#8217;s actually a little challenging to prepare a list of <strong>web safe fonts</strong> that you can use as pure text on your websites. Some people use Windows Vista or Mac OS X. Others use Linux. And others are still using older versions like Windows 98 or Mac OS 8! So to keep things safe, here is a list of the most common, standard fonts for websites that even people using ancient operating systems can see:</p>
<ul>
<li>Arial</li>
<li>Courier New</li>
<li>Georgia</li>
<li>Helvetica</li>
<li>Times New Roman</li>
<li>Trebuchet MS</li>
<li>Verdana</li>
<li>Webdings</li>
</ul>
<p>Here&#8217;s an image of what they look like:</p>
<p><img src="http://www.newbiewebsitedesign.com/wp-content/uploads/2009/07/safe1.jpg" alt="100% safe!" title="100% safe!" width="255" height="235" class="alignnone size-full wp-image-1270" /><br />
<br/><br />
I realize that this is a pretty short list, but remember that these fonts are to be used as pure text and not as logos or other fancy website design elements.</p>
<p>If you&#8217;re sure that most of your website visitors are using more recent operating systems, then you can also add these common website fonts to the list:</p>
<ul>
<li>Andale Mono</li>
<li>Arial Black</li>
<li>Century Gothic</li>
<li>Comic Sans MS</li>
<li>Impact</li>
<li>Tahoma</li>
<li>Zapf Dingbats</li>
</ul>
<p>Here&#8217;s an image of what they look like:</p>
<p><img src="http://www.newbiewebsitedesign.com/wp-content/uploads/2009/07/safe2.jpg" alt="Could be safe" title="Could be safe" width="289" height="212" class="alignnone size-full wp-image-1271" /></p>
<p>(There are a few more, but I&#8217;m the kind of website designer who prefers to use fonts that everyone can see.)</p>
<h2>Final thoughts</h2>
<p>In answer to the question <em>&#8220;What are the best fonts for web design?&#8221;</em> I would recommend for pure text that you stick with the most common fonts in the first list above. This will ensure that everyone visiting your site can see it the way you intend it to be seen. For your website logo, navigation, and other website design elements, you can use any font you want as long as it&#8217;s part of an image.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.newbiewebsitedesign.com/best-fonts-for-websites-web-safe-fonts/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>What&#8217;s the difference between vector and bitmap (rasterized) images?</title>
		<link>http://www.newbiewebsitedesign.com/whats-the-difference-between-vector-and-bitmap-rasterized-images</link>
		<comments>http://www.newbiewebsitedesign.com/whats-the-difference-between-vector-and-bitmap-rasterized-images#comments</comments>
		<pubDate>Fri, 24 Jul 2009 08:10:56 +0000</pubDate>
		<dc:creator>David Radtke - Admin</dc:creator>
				<category><![CDATA[Design and Layout]]></category>
		<category><![CDATA[Glossary of Confusing Stuff]]></category>

		<guid isPermaLink="false">http://www.newbiewebsitedesign.com/?p=1201</guid>
		<description><![CDATA[There are two types of images that you&#8217;ll need to understand as you get deeper into website design and graphic design: vector images and bitmap (rasterized) images.
Under normal conditions, one usually cannot tell the difference between a vector and a bitmap image. It&#8217;s only upon closer inspection that you can actually see those differences. But [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.newbiewebsitedesign.com/wp-content/uploads/2009/07/vector.jpg" alt="Difference between vector and bitmap images" title="Difference between vector and bitmap images" width="118" height="139" class="leftphoto" />There are two types of images that you&#8217;ll need to understand as you get deeper into website design and graphic design: <strong>vector images</strong> and <strong>bitmap (rasterized) images</strong>.</p>
<p>Under normal conditions, one usually cannot tell the difference between a vector and a bitmap image. It&#8217;s only upon closer inspection that you can actually see those differences. But more importantly, it&#8217;s what vector images and bitmap (rasterized) images are that will allow you to use them correctly in graphic design.</p>
<p><span id="more-1201"></span></p>
<h2>Bitmap (rasterized) images</h2>
<p>The data of a bitmap image (a.k.a. rasterized image) is saved using a &#8220;grid system&#8221;. Each and every pixel in a bitmap image has a location on an X/Y coordinate system:</p>
<p><img src="http://www.newbiewebsitedesign.com/wp-content/uploads/2009/07/Bitmap-image-grid-coordinates.jpg" alt="Bitmap image grid coordinates" title="Bitmap image grid coordinates" width="329" height="191" class="alignnone size-full wp-image-1215" /></p>
<p>In addition, the color value at each pixel location is also saved. Because of this, bitmap files can be extremely large. Bitmap images are perfect for photographs since all of the color data is accurately saved.</p>
<p>Here are some common bitmap file extensions:</p>
<ul>
<li>BMP</li>
<li>GIF </li>
<li>JPG, JPEG</li>
<li>PNG </li>
<li>PICT (Macintosh) </li>
<li>PCX </li>
<li>TIFF</li>
<li>PSD (Adobe Photoshop)</li>
</ul>
<h2>Vector images</h2>
<p>The data of a vector image is saved using geometrical primitives such as points, lines, curves, and shapes or polygons, which are all based on mathematical equations. Because of this, vector image files are much smaller than bitmap image files.</p>
<p>The downside to vector images is that they are horrible for photographs, since much of the detail is lost. Vector images are best for clipart and logos. (Sorry for not having an example of a vector image, but it&#8217;s hard to display an image of a bunch of mathematical equations! <img src='http://www.newbiewebsitedesign.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  )</p>
<p>Here are some common vector image file extensions:</p>
<ul>
<li>AI (Adobe Illustrator)</li>
<li>EPS (Encapsulated PostScript)</li>
<li>CDR (CorelDRAW)</li>
<li>CGM (Computer Graphics Metafile)</li>
<li>WMF (Windows Metafile)</li>
<li>SWF (Shockwave Flash)</li>
</ul>
<h2>Resizing bitmap images</h2>
<p>Take a look at the following bitmap image:</p>
<p><img src="http://www.newbiewebsitedesign.com/wp-content/uploads/2009/07/flower.jpg" alt="flower" title="flower" width="137" height="135" class="alignnone size-full wp-image-1202" /></p>
<p>Now, if we try to enlarge this bitmap image, we&#8217;ll get this result (it&#8217;s only a partial image):</p>
<p><img src="http://www.newbiewebsitedesign.com/wp-content/uploads/2009/07/bitmap_flower.jpg" alt="Rasterized bitmap flower image" title="Rasterized Bitmap Flower" width="320" height="123" class="alignnone size-full wp-image-1203" /></p>
<p>When you enlarge a bitmap image all you&#8217;ll get are jagged lines &mdash; making bitmap images a minor headache to resize (see the post <a href="/photoshop-go-from-big-to-small">In Photoshop, go from big to smal</a>l for some tips on how to decrease the head-throbbing.)<br />
<br/></p>
<h2>Resizing vector images</h2>
<p>On the other hand, vector images &mdash; being based solely on mathematical equations &mdash; can be resized as much or as little as you like without losing any detail:</p>
<p><img src="http://www.newbiewebsitedesign.com/wp-content/uploads/2009/07/vector_flower.jpg" alt="Vector flower image" title="Vector image flower" width="320" height="123" class="alignnone size-full wp-image-1204" /><br />
<br/></p>
<h2>Final thoughts</h2>
<p>If you are designing for the web, then you will have to use some form of bitmap image (JPG, GIF, or PNG) in your final draft. But during the design process, you are free to use vector images until they are ready for the web. Photoshop has the ability to &#8220;rasterize&#8221; a vector image (changing a vector image to a bitmap image) by right clicking on a vector layer and choosing &#8220;Rasterize Layer&#8221; from the menu.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.newbiewebsitedesign.com/whats-the-difference-between-vector-and-bitmap-rasterized-images/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Web design techniques: Tables vs. CSS Boxes</title>
		<link>http://www.newbiewebsitedesign.com/web-design-techniques-tables-vs-cs</link>
		<comments>http://www.newbiewebsitedesign.com/web-design-techniques-tables-vs-cs#comments</comments>
		<pubDate>Tue, 21 Jul 2009 06:35:24 +0000</pubDate>
		<dc:creator>David Radtke - Admin</dc:creator>
				<category><![CDATA[Design and Layout]]></category>

		<guid isPermaLink="false">http://www.newbiewebsitedesign.com/?p=1159</guid>
		<description><![CDATA[Beginners to website design are faced with a big choice before laying out their first website: should I build my website using tables or should I go the CSS &#8220;box model&#8221; route? Many years ago when I was just a beginner to website design and was searching high and low for information on how to [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.newbiewebsitedesign.com/wp-content/uploads/2009/07/table-of-boxes.jpg" alt="A table of boxes" title="A table of boxes" width="118" height="139" class="leftphoto" />Beginners to website design are faced with a big choice before laying out their first website: should I build my website using tables or should I go the CSS &#8220;box model&#8221; route? Many years ago when I was just a beginner to website design and was searching high and low for information on how to design websites, I often read posts by designers touting the benefits of either one web design technique or the other. Quite baffling to say the least, especially since I had absolutely no clue what these people were arguing about!</p>
<p>If you really are a beginner, have no idea what I&#8217;m talking about, or are contemplating which of the two to use, then this post is for you.</p>
<p><span id="more-1159"></span></p>
<h2>Table-based layout</h2>
<p>We all know what a table looks like. No, not the kind that supports the weight of your computer, your empty pizza boxes, and your head when you fall asleep from watching one too many YouTube videos &mdash; the other kind. They look just like this:</p>
<p><img src="http://www.newbiewebsitedesign.com/wp-content/uploads/2009/07/table-1.gif" alt="A basic table" title="A basic table" width="420" height="194" class="alignnone size-full wp-image-1160" /></p>
<p>Unknown to many beginners to website design, these tables (which normally hold numerical data) can be used to hold together the elements of a website. Take a gander:</p>
<p><img src="http://www.newbiewebsitedesign.com/wp-content/uploads/2009/07/table-2.gif" alt="A table-based layout" title="A table-based layout" width="420" height="295" class="alignnone size-full wp-image-1161" /></p>
<p>To accomplish this, all you have to do is to start with a table that has the maximum number of rows and columns needed (usually the number of navigation elements you want) and then merge other sections to create headers, sidebars, and content.</p>
<p>The nice part about table-based layout is that they are very easy to create and very easy to understand for beginners to website design. Most <a href="/wysiwyg-or-not-to-wysiwyg">WYSIWYG</a> editors make it quite simple to create the table, merge cells, and then add the content. This is how I first began building websites in my early days.</p>
<p>The drawback of table-based layouts is that they produce bulky code, can be a major headache to debug, and if you decide to redesign your website, then you have to redo every single page.</p>
<h2>CSS box model layout</h2>
<p>The CSS box model is the new, hip, and very cool way to build websites. Instead of using the cells of a table (or tables) to hold the content of your website, you use &#8220;boxes&#8221; . These boxes are created using the HTML tags: <strong>&lt;div&gt; &lt;/div&gt;</strong> Check out this typical website layout:</p>
<p><img src="http://www.newbiewebsitedesign.com/wp-content/uploads/2009/07/box-no-lines.jpg" alt="Typical layout" title="Typical layout" width="523" height="450" class="alignnone size-full wp-image-1175" /></p>
<p>Hidden from your eyes are the &lt;div&gt;s that hold this layout together. The red squares in the following image show you where these &#8220;div boxes&#8221; are located:</p>
<p><img src="http://www.newbiewebsitedesign.com/wp-content/uploads/2009/07/box-lines.jpg" alt="CSS div boxes" title="CSS div boxes" width="523" height="450" class="alignnone size-full wp-image-1176" /></p>
<p>The beauty of the CSS box model is that whenever you want to change the layout of your website all you have to do is change the single CSS file and some of the images (for the most part.) Case in point: Newbie Website Design is now in its fifth redesign. Each time all I had to do was to change the images in Photoshop and then the CSS file. Done!</p>
<p>The bad part of CSS is that there is a slight learning curve. And if you began your website design life using the table-based model, then you&#8217;ll have to go through a paradigm shift to wrap your mind around the unique CSS way. In addition, Microsoft&#8217;s Internet Explorer 6 and Internet Explorer 7 have buggy support for CSS. Thankfully, they finally added full CSS support in Internet Explorer 8. Other browsers such as Safari, FireFox, Opera, and others have had full CSS support for many, many years. (Why did it take Microsoft so long? <img src='http://www.newbiewebsitedesign.com/wp-includes/images/smilies/icon_confused.gif' alt=':?' class='wp-smiley' />  )</p>
<h2>Make your choice</h2>
<p>As you ponder which website design technique you&#8217;ll use as a beginner to website design, please keep in mind that as you get better and better at your craft, you&#8217;ll most likely want to switch over to the CSS box model for its power and flexibility. If you just want a quick and easy website, then using a <a href="/wysiwyg-or-not-to-wysiwyg">WYSIWYG</a> visual editor with the table-based layout will get the job done to simple satisfaction.</p>
<h2>Further reading:</h2>
<p>Here are some posts that will held explain a little bit more of my recommended web design technique, the CSS box model:</p>
<p><a href="/cascading-style-sheets-css">CSS &#8211; Cascading Style Sheets</a><br />
<a href="/boxes-the-building-blocks-of-websites">Boxes &#8211; The building blocks of websites</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.newbiewebsitedesign.com/web-design-techniques-tables-vs-cs/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
