<?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>I.Viddy &#187; HTML</title>
	<atom:link href="http://ividdy.com/index.php/tag/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://ividdy.com</link>
	<description>Writer + Artist + Cyclist</description>
	<lastBuildDate>Wed, 30 May 2012 13:16:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Day 23: A Post A Day (Website Building Tips For Dummy Heads)</title>
		<link>http://ividdy.com/index.php/day-23-a-post-a-day-website-building-tips-for-dummy-heads/</link>
		<comments>http://ividdy.com/index.php/day-23-a-post-a-day-website-building-tips-for-dummy-heads/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 04:54:16 +0000</pubDate>
		<dc:creator>Mister Viddy</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Website Design]]></category>
		<category><![CDATA[Writing]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://ividdy.com/?p=1162</guid>
		<description><![CDATA[Wait, somebody told you that building a website was easy?  And you fell for it?  Now that the damage is done and you have come to the realization that you have gotten in way over your head let me give you a few tips that will help you learn the basics of website design. Ok, [...]]]></description>
			<content:encoded><![CDATA[<p><center>
<a href="http://ividdy.com/wp-content/gallery/posts/thestupiditburns.jpg" title="The Stupid, It Burns!!!" class="thickbox" rel="singlepic51" >
	<img class="ngg-singlepic" src="http://ividdy.com/wp-content/gallery/cache/51__400x_thestupiditburns.jpg" alt="The Stupid, It Burns!!!" title="The Stupid, It Burns!!!" />
</a>
</center><br />
Wait, somebody told you that building a website was easy?  And you fell for it?  Now that the damage is done and you have come to the realization that you have gotten in way over your head let me give you a few tips that will help you learn the basics of website design.</p>
<p>Ok, I was kidding.  You are hosed.  That burning feeling, it&#8217;s the stupid.  If you&#8217;re in luck then you can cancel your web hosting account and get your money back.  If not, then you are really fucked.  Seriously.  You must have known that it was too good to be true.  How can designing a website be easy when you don&#8217;t even know what HTML stands for.  I hate to break it to you but the only way you are going to have a decent looking website is to pay someone to design it for you.  Reality bites.</p>
<p>Let&#8217;s be real.  Before you even consider trying to build your own website maybe you should start with something easy like learning the difference between the address bar and the search bar in your browser.  And that is another thing.  Do you even know what a browser is?  Exactly.  I cannot stress this enough, you DO NOT WANT TO DESIGN YOUR OWN WEBSITE!  It will only bring you misery.  And, by some stroke of pure luck, you do manage to put together a few, very poorly designed web pages the next thing you will experience is the agonizing reality that you&#8217;ll never turn up in any of the search engines.  Listen to me folks, I am an expert.  You do not want this much misery in your life.</p>
<p>If I can persuade even one person to not design their own website then I feel that I have helped make one life better.</p>
]]></content:encoded>
			<wfw:commentRss>http://ividdy.com/index.php/day-23-a-post-a-day-website-building-tips-for-dummy-heads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Display An Image On Your Web Page</title>
		<link>http://ividdy.com/index.php/how-to-display-an-image-on-your-web-page/</link>
		<comments>http://ividdy.com/index.php/how-to-display-an-image-on-your-web-page/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 21:41:08 +0000</pubDate>
		<dc:creator>Mister Viddy</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Images]]></category>

		<guid isPermaLink="false">http://ividdy.com/?p=52</guid>
		<description><![CDATA[You have a website or online store and you want to display an image but you are asking yourself how do you do it?  Magic.  No, not really.  Just a little bit of HTML and you&#8217;ll be all set. In HTML, images are defined with the &#60;img&#62; tag. The &#60;img&#62; tag is empty, which means that [...]]]></description>
			<content:encoded><![CDATA[<p>You have a website or online store and you want to display an image but you are asking yourself how do you do it?  Magic.  No, not really.  Just a little bit of HTML and you&#8217;ll be all set.</p>
<p>In HTML, images are defined with the &lt;img&gt; tag. The &lt;img&gt; tag is empty, which means that it contains attributes only and it has no closing tag.</p>
<p>To display an image on a page, you need to use the src attribute. Src stands for &#8220;source&#8221;. The value of the src attribute is the URL of the image you want to display on your page.  The syntax you need to use is:</p>
<p>&lt;img src=&#8221;URL&#8221;&gt;</p>
<p>You are telling the browser that you want to display an image that is stored in whatever URL is located in between the quotes.  For example, you want to display and image named &#8220;familyphoto.jpg&#8221; and you have that image stored in a directory called images on the server hosting your account.  You would use the following syntax in order to get that image to show up on a page of your website:</p>
<p>&lt;img src=&#8221;http://yourdomainname.com/images/familyphoto.jpg&#8221;&gt;</p>
<p>The browser will display the image based on where you insert the code above into your web page.  If you are trying to insert a logo for example, you would insert the code into the &lt;head&gt; section of your home page.  Or if you have several paragraphs of written text you would be able to insert the code between two of the paragraphs and the image would display there instead.</p>
<p>You can follow the same syntax above to insert multiple images in multiple locations by changing the name of the image file to whatever image it is you want to display.</p>
<p>This is a simple way to display an image but by no means is it the only way.  We&#8217;ll discuss more options on how to display images on a web page later.</p>
<p>In the meantime, if you have a question on this subject feel free to contact me using the Contact Mister Viddy link on the upper right portion of the sidebar.  I try to respond to all questions or comments within 24hrs.</p>
]]></content:encoded>
			<wfw:commentRss>http://ividdy.com/index.php/how-to-display-an-image-on-your-web-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

