<?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>NewByDesign &#187; coding</title>
	<atom:link href="http://www.newbydesign.com/tag/coding/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.newbydesign.com</link>
	<description>Tips, Tricks and Resources to help you make your own website.</description>
	<lastBuildDate>Tue, 08 Jun 2010 04:02:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Why You Really Need To Know Basic HTML</title>
		<link>http://www.newbydesign.com/why-you-really-need-to-know-basic-html/</link>
		<comments>http://www.newbydesign.com/why-you-really-need-to-know-basic-html/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 15:03:12 +0000</pubDate>
		<dc:creator>Tim Hicks</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[web site design]]></category>

		<guid isPermaLink="false">http://newbydesign.com/?p=185</guid>
		<description><![CDATA[No doubt the title of this article will shock, or at least confuse some people.  After all, I am very outspoken on my view that we need not &#8220;reinvent the wheel&#8221; when building a website.  Heck, I even titled another article with that very phrase &#8211; &#8220;don&#8217;t reinvent the wheel.&#8221;  Yes, I am also the [...]


Related posts:<ol><li><a href='http://www.newbydesign.com/static-html-versus-blog-versus-cms/' rel='bookmark' title='Permanent Link: Static HTML Versus Blog Versus CMS.'>Static HTML Versus Blog Versus CMS.</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>No doubt the title of this article will shock, or at least confuse some people.  After all, I am very outspoken on my view that we need not &#8220;reinvent the wheel&#8221; when building a website.  Heck, I even titled another article with that very phrase &#8211; &#8220;don&#8217;t reinvent the wheel.&#8221;  Yes, I am also the person who advocates using modified templates if it means getting your site up and looking good in less time and with less hassle.  Those viewpoints still hold true.  Why then, would I tell you that you need to know basic HTML?  Well, the answer is really quite simple.   It&#8217;s all about control. </p>
<p>If you rely totally on someone else to do every little upgrade to your website, you&#8217;re at their mercy.  If they&#8217;re out of town, or otherwise unavailable, your site updates don&#8217;t get done.  This could mean missing an important update or promotional item.  Worse yet, it could mean leaving a potentially embarrassing mistake or outdated information on your site for an extended time.</p>
<p>Even if you are using a CMS or blogging platform, you should still know basic HTML.  It comes in quite handy for adding or editing links and other items not automatically incorporated into your platform.  For example, this site is built using the WordPress platform.  When I wanted to put the welcome box on the front page (that&#8217;s the box with my photo in it), I started with a text &#8220;widget&#8221; (WordPress term) and used some simple HTML commands to add the photo, align it to the left and format the text the way I wanted.  Had I not known about the simple &#8220;tags&#8221; to set this up the way I wanted, and had I been forced to wait for a web designer to do it for me, I would have been stuck.</p>
<p>Now, how exactly do you go about learning basic HTML?  Well, there are a few ways.  Perhaps the easiest would be to download an HTML editor that offers both a WYSIWYG view as well as a plain text code view.  The one I highly recommend is <a href="http://timhicks.com/recommends/coffeecup.php" target="_blank">CoffeeCup&#8217;s HTML Editor</a>.  Once you have the editor downloaded, use the WYSIWYG editor to create a simple webpage.  Then, click over to the plain text version to see how it is rendered.  At first, it may look very confusing until you come to realize that HTML is really made up mostly of command tags.  Most commands contain an &#8220;open&#8221; tag and a &#8220;close&#8221; tag.  For example, if you want to center some text, the HTML command would be: </p>
<blockquote><p>&lt;center&gt;&#8221;This text is centered.&#8221;&lt;/center&gt;</p></blockquote>
<p>and the result would be:</p>
<p style="text-align: center;">&#8220;This text is centered.&#8221;</p>
<p style="text-align: left;">In the example, &lt;center&gt; is the start tag and tells the HTML browser where to start the command.  The close tag, &lt;/center&gt; is basically the same command again with a &#8220;/&#8221; between the left bracket and the command.  It&#8217;s not really that hard at all.</p>
<p style="text-align: left;">Let&#8217;s try another quick example.  This time, we want to put some text in bold type.  To do that, the command would be:</p>
<blockquote>
<p style="text-align: left;"> &lt;b&gt;&#8221;This type is in bold.&#8221; &lt;/b&gt;</p>
</blockquote>
<p style="text-align: left;">and the result would be: <strong>&#8220;This type is in bold.&#8221;</strong>  In this example, you could also use the &lt;strong&gt;&lt;/strong&gt; tags instead of the &lt;b&gt; and &lt;/b&gt; tags.  There are reasons why they are different, but that is beyond the scope of this article.  My personal preference is to use the &lt;b&gt; tags.  This is due, at least in part, to the fact that it requires less typing.</p>
<p style="text-align: left;">If you want to get into it a little further, I highly recommend a great book by Dr. Nicholas Longo (Founder and CEO of CoffeeCup Software).  It&#8217;s called &#8220;<em>My Website Is Better Than Yours.</em>&#8220;  This book may go a little too in-depth for most readers, but you will definitely learn the basics.  When reading it, take the &#8220;grocery store&#8221; approach.  That is to take what you can use and leave the rest on the shelf.   As of this writing, the e-book version is still available for $19 from the online store section of the <a href="http://timhicks.com/recommends/coffeecup.php" target="_blank">CoffeeCup website</a>.</p>


<p>Related posts:<ol><li><a href='http://www.newbydesign.com/static-html-versus-blog-versus-cms/' rel='bookmark' title='Permanent Link: Static HTML Versus Blog Versus CMS.'>Static HTML Versus Blog Versus CMS.</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.newbydesign.com/why-you-really-need-to-know-basic-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
