<?xml version="1.0" encoding="UTF-8" standalone="no"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:gd="http://schemas.google.com/g/2005" xmlns:georss="http://www.georss.org/georss" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-1194596369419497268</atom:id><lastBuildDate>Fri, 30 Aug 2024 00:44:36 +0000</lastBuildDate><category>CSS Template 2 Colloum</category><category>Tips danTriks</category><category>CSS Template 3 Colloum</category><category>3 Colloum</category><category>Blogspot Template Free</category><category>CSS Template</category><title>Mr.Adam</title><description></description><link>http://ms-adam.blogspot.com/</link><managingEditor>noreply@blogger.com (Mr. BlOgS)</managingEditor><generator>Blogger</generator><openSearch:totalResults>21</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><language>en-us</language><itunes:explicit>no</itunes:explicit><itunes:subtitle/><itunes:owner><itunes:email>noreply@blogger.com</itunes:email></itunes:owner><xhtml:meta content="noindex" name="robots" xmlns:xhtml="http://www.w3.org/1999/xhtml"/><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1194596369419497268.post-4827433182398402408</guid><pubDate>Mon, 23 Nov 2009 07:32:00 +0000</pubDate><atom:updated>2009-11-22T23:32:02.302-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Tips danTriks</category><title>How to embed an audio file</title><description>You can embed a music file into your page using the following HTML code:&lt;br /&gt;
&amp;lt;embed name=&amp;quot;lostmojo&amp;quot;&lt;br /&gt;
src=&amp;quot;/your url, web_design/lostmojo.wav&amp;quot;&lt;br /&gt;
width=&amp;quot;300&amp;quot;&lt;br /&gt;
height=&amp;quot;90&amp;quot;&lt;br /&gt;
loop=&amp;quot;false&amp;quot;&lt;br /&gt;
autostart=&amp;quot;false&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/embed&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;embed name="lostmojo"
src="/your url, web_design/lostmojo.wav"
width="300"
height="90"
loop="false"
autostart="false"&gt;&lt;br /&gt;
&lt;/embed&gt;</description><link>http://ms-adam.blogspot.com/2009/11/how-to-embed-audio-file.html</link><author>noreply@blogger.com (Mr. BlOgS)</author><thr:total>22</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1194596369419497268.post-72752492321000258</guid><pubDate>Mon, 23 Nov 2009 07:12:00 +0000</pubDate><atom:updated>2009-11-22T23:12:18.888-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Tips danTriks</category><title>How to create form fields</title><description>Usually when a user submits the form, you need the system to do something with the data. This is where the action page comes in. The action page is the page that the form is submitted to. This page could contain advanced scripts or programming that inserts the form data into a database or emails an administrator etc.&lt;br /&gt;
&lt;br /&gt;
Creating an action page is outside the scope of this tutorial. In any case, many web hosts provide scripts that can be used for action page functionality, such as emailing the webmaster whenever the form has been completed. For now, we will simply look at how to submit the form to the action page.&lt;br /&gt;
&lt;br /&gt;
You nominate an action page with the action attribute.&lt;br /&gt;
&lt;br /&gt;
Example HTML Code:&lt;br /&gt;
&amp;lt;form action="/html/tags/html_form_tag_action.cfm" method="get"&amp;gt;&lt;br /&gt;
First name:&lt;br /&gt;
&amp;lt;input type="text" name="first_name" value="" maxlength="100" /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Last name:&lt;br /&gt;
&amp;lt;input type="text" name="last_name" value="" maxlength="100" /&amp;gt;&lt;br /&gt;
&amp;lt;input type="submit" value="Submit" /&amp;gt;&lt;br /&gt;
&amp;lt;/form&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This results in:&lt;br /&gt;
&lt;form action="/html/tags/html_form_tag_action.cfm" method="get"&gt;First name:&lt;br /&gt;
&lt;input maxlength="100" name="first_name" /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Last name:&lt;br /&gt;
&lt;input maxlength="100" name="last_name" /&gt;&lt;br /&gt;
&lt;input type="submit" /&gt;&lt;br /&gt;
&lt;/form&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;
Oh, one last thing. You may have noticed the above example uses a method attribute. This attribute specifies the HTTP method to use when the form is submitted.&lt;br /&gt;
&lt;br /&gt;
Possible values are:&lt;br /&gt;
&lt;br /&gt;
get (the form data is appended to the URL when submitted)&lt;br /&gt;
post (the form data is not appended to the URL)&lt;br /&gt;
Providing this attribute is optional. If you don't provide it, the method will be post.</description><link>http://ms-adam.blogspot.com/2009/11/how-to-create-form-fields.html</link><author>noreply@blogger.com (Mr. BlOgS)</author><thr:total>2</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1194596369419497268.post-8431845362974759637</guid><pubDate>Mon, 23 Nov 2009 07:03:00 +0000</pubDate><atom:updated>2009-11-22T23:03:48.625-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Tips danTriks</category><title>Select Lists</title><description>A select list is a dropdown list with options. This allows the user to select one option from a list of pre-defined options.&lt;br /&gt;
&lt;br /&gt;
The select list is created using the select in conjunction with the option tag.&lt;br /&gt;
&amp;lt;select&amp;gt;&lt;br /&gt;
  &amp;lt;option value =&amp;quot;sydney&amp;quot;&amp;gt;Sydney&amp;lt;/option&amp;gt;&lt;br /&gt;
  &amp;lt;option value =&amp;quot;melbourne&amp;quot;&amp;gt;Melbourne&amp;lt;/option&amp;gt;&lt;br /&gt;
  &amp;lt;option value =&amp;quot;cromwell&amp;quot;&amp;gt;Cromwell&amp;lt;/option&amp;gt;&lt;br /&gt;
  &amp;lt;option value =&amp;quot;queenstown&amp;quot;&amp;gt;Queenstown&amp;lt;/option&amp;gt;&lt;br /&gt;
&amp;lt;/select&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This results in:&lt;br /&gt;
&lt;select&gt;&lt;br /&gt;
  &lt;option value ="sydney"&gt;Sydney&lt;/option&gt;&lt;br /&gt;
  &lt;option value ="melbourne"&gt;Melbourne&lt;/option&gt;&lt;br /&gt;
  &lt;option value ="cromwell"&gt;Cromwell&lt;/option&gt;&lt;br /&gt;
  &lt;option value ="queenstown"&gt;Queenstown&lt;/option&gt;&lt;br /&gt;
&lt;/select&gt;</description><link>http://ms-adam.blogspot.com/2009/11/select-lists.html</link><author>noreply@blogger.com (Mr. BlOgS)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1194596369419497268.post-1848271906261625225</guid><pubDate>Mon, 23 Nov 2009 07:01:00 +0000</pubDate><atom:updated>2009-11-22T23:01:10.710-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Tips danTriks</category><title>Submit</title><description>The submit button allows the user to actually submit the form.&lt;br /&gt;
&amp;lt;input type=&amp;quot;submit&amp;quot; /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
This results in:&lt;br /&gt;
&lt;input type="submit" /&gt;</description><link>http://ms-adam.blogspot.com/2009/11/submit.html</link><author>noreply@blogger.com (Mr. BlOgS)</author><thr:total>73</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1194596369419497268.post-8826009053502833654</guid><pubDate>Mon, 23 Nov 2009 06:59:00 +0000</pubDate><atom:updated>2009-11-22T22:59:13.195-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Tips danTriks</category><title>Checkboxes</title><description>Checkboxes are similar to radio buttons, but enable the user to make multiple selections..&lt;br /&gt;
&amp;lt;input type=&amp;quot;checkbox&amp;quot; name=&amp;quot;lunch&amp;quot; value=&amp;quot;pasta&amp;quot; /&amp;gt;&amp;lt;br /&amp;gt; &amp;lt;input type=&amp;quot;checkbox&amp;quot; name=&amp;quot;lunch&amp;quot; value=&amp;quot;rissotto&amp;quot; /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
This results in:&lt;br /&gt;
&lt;input type="checkbox" name="lunch" value="pasta" /&gt;&lt;br /&gt; &lt;input type="checkbox" name="lunch" value="rissotto" /&gt;</description><link>http://ms-adam.blogspot.com/2009/11/checkboxes.html</link><author>noreply@blogger.com (Mr. BlOgS)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1194596369419497268.post-7906004418366956802</guid><pubDate>Mon, 23 Nov 2009 06:55:00 +0000</pubDate><atom:updated>2009-11-22T22:55:16.926-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Tips danTriks</category><title>Radio Buttons</title><description>Radio buttons are used for when you want the user to select one option from a pre-determined set of options.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;input type=&amp;quot;radio&amp;quot; name=&amp;quot;lunch&amp;quot; value=&amp;quot;pasta&amp;quot; /&amp;gt;&amp;lt;br /&amp;gt; &amp;lt;input type=&amp;quot;radio&amp;quot; name=&amp;quot;lunch&amp;quot; value=&amp;quot;rissotto&amp;quot; /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
This results in:&lt;br /&gt;
&lt;input type="radio" name="lunch" value="pasta" /&gt;&lt;br /&gt; &lt;input type="radio" name="lunch" value="rissotto" /&gt;</description><link>http://ms-adam.blogspot.com/2009/11/radio-buttons.html</link><author>noreply@blogger.com (Mr. BlOgS)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1194596369419497268.post-6889153341684008161</guid><pubDate>Mon, 23 Nov 2009 06:49:00 +0000</pubDate><atom:updated>2009-11-22T22:51:59.420-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Tips danTriks</category><title>The Input Tag</title><description>This is the most commonly used tag within HTML forms. It allows you to specify various types of user input fields such as text, radio buttons, checkboxes etc.&lt;br /&gt;
&lt;br /&gt;
Text fields are used for when you want the user to type text or numbers into the form.&lt;br /&gt;
This results in:&lt;br /&gt;
&lt;input type="text" /&gt;&lt;br /&gt;
&lt;br /&gt;
code:&lt;br /&gt;
&amp;lt;input type=&amp;quot;text&amp;quot; /&amp;gt;</description><link>http://ms-adam.blogspot.com/2009/11/input-tag.html</link><author>noreply@blogger.com (Mr. BlOgS)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1194596369419497268.post-3006360261887887808</guid><pubDate>Sat, 21 Nov 2009 08:19:00 +0000</pubDate><atom:updated>2009-11-21T00:19:57.228-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">CSS Template 2 Colloum</category><title>Republic CSS Template free</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_TWrEVKacZdI/SweidD2vP6I/AAAAAAAAAKg/nZYBpIOcim4/s1600/13.bmp" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_TWrEVKacZdI/SweidD2vP6I/AAAAAAAAAKg/nZYBpIOcim4/s400/13.bmp" yr="true" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.ziddu.com/download/7443761/republic.zip.html"&gt;Download&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><link>http://ms-adam.blogspot.com/2009/11/republic-css-template-free.html</link><author>noreply@blogger.com (Mr. BlOgS)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="http://1.bp.blogspot.com/_TWrEVKacZdI/SweidD2vP6I/AAAAAAAAAKg/nZYBpIOcim4/s72-c/13.bmp" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1194596369419497268.post-1909334385132591683</guid><pubDate>Sat, 21 Nov 2009 08:17:00 +0000</pubDate><atom:updated>2009-11-21T00:17:56.790-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">CSS Template 2 Colloum</category><title>Bamboo CSS Template free</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_TWrEVKacZdI/SweiAuXfO0I/AAAAAAAAAKY/kliiiRuzkJo/s1600/12.bmp" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_TWrEVKacZdI/SweiAuXfO0I/AAAAAAAAAKY/kliiiRuzkJo/s400/12.bmp" yr="true" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.ziddu.com/download/7443744/bamboo.zip.html"&gt;Download&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><link>http://ms-adam.blogspot.com/2009/11/bamboo-css-template-free.html</link><author>noreply@blogger.com (Mr. BlOgS)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="http://3.bp.blogspot.com/_TWrEVKacZdI/SweiAuXfO0I/AAAAAAAAAKY/kliiiRuzkJo/s72-c/12.bmp" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1194596369419497268.post-4334554017875476079</guid><pubDate>Sat, 21 Nov 2009 08:10:00 +0000</pubDate><atom:updated>2009-11-21T00:10:50.618-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">CSS Template 3 Colloum</category><title>Paperslips CSS Template Free</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_TWrEVKacZdI/Swef5fQN3PI/AAAAAAAAAKQ/vAatSBckULk/s1600/11.bmp" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_TWrEVKacZdI/Swef5fQN3PI/AAAAAAAAAKQ/vAatSBckULk/s400/11.bmp" yr="true" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.ziddu.com/download/7443669/paperslips.zip.html"&gt;Download&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><link>http://ms-adam.blogspot.com/2009/11/paperslips-css-template-free.html</link><author>noreply@blogger.com (Mr. BlOgS)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="http://4.bp.blogspot.com/_TWrEVKacZdI/Swef5fQN3PI/AAAAAAAAAKQ/vAatSBckULk/s72-c/11.bmp" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1194596369419497268.post-7484652690170298233</guid><pubDate>Sat, 21 Nov 2009 08:06:00 +0000</pubDate><atom:updated>2009-11-21T00:06:43.762-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">CSS Template 3 Colloum</category><title>Soothing CSS Template Free Download</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_TWrEVKacZdI/SwefRvLDeOI/AAAAAAAAAKI/91Abp8oCauU/s1600/10.bmp" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_TWrEVKacZdI/SwefRvLDeOI/AAAAAAAAAKI/91Abp8oCauU/s400/10.bmp" yr="true" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.ziddu.com/download/7443625/soothing.zip.html"&gt;Download&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><link>http://ms-adam.blogspot.com/2009/11/soothing-css-template-free-download.html</link><author>noreply@blogger.com (Mr. BlOgS)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="http://3.bp.blogspot.com/_TWrEVKacZdI/SwefRvLDeOI/AAAAAAAAAKI/91Abp8oCauU/s72-c/10.bmp" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1194596369419497268.post-8484301146337486125</guid><pubDate>Sat, 21 Nov 2009 07:47:00 +0000</pubDate><atom:updated>2009-11-20T23:47:31.429-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">CSS Template 2 Colloum</category><title>Quarantine Css Template free download</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_TWrEVKacZdI/Swea1BJby2I/AAAAAAAAAKA/3njINx4IguA/s1600/08.bmp" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_TWrEVKacZdI/Swea1BJby2I/AAAAAAAAAKA/3njINx4IguA/s400/08.bmp" yr="true" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.ziddu.com/download/7443491/guarantee.zip.html"&gt;Download&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><link>http://ms-adam.blogspot.com/2009/11/quarantine-css-template-free-download.html</link><author>noreply@blogger.com (Mr. BlOgS)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="http://1.bp.blogspot.com/_TWrEVKacZdI/Swea1BJby2I/AAAAAAAAAKA/3njINx4IguA/s72-c/08.bmp" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1194596369419497268.post-7679216950340675109</guid><pubDate>Sat, 21 Nov 2009 07:40:00 +0000</pubDate><atom:updated>2009-11-20T23:40:44.154-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">CSS Template 2 Colloum</category><title>Component Css Template 2 Colloum</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_TWrEVKacZdI/SweZMxH24FI/AAAAAAAAAJ4/XJlb-0naiPw/s1600/07.bmp" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_TWrEVKacZdI/SweZMxH24FI/AAAAAAAAAJ4/XJlb-0naiPw/s400/07.bmp" yr="true" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.ziddu.com/download/7443465/component.zip.html"&gt;Download&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><link>http://ms-adam.blogspot.com/2009/11/component-css-template-2-colloum.html</link><author>noreply@blogger.com (Mr. BlOgS)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="http://3.bp.blogspot.com/_TWrEVKacZdI/SweZMxH24FI/AAAAAAAAAJ4/XJlb-0naiPw/s72-c/07.bmp" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1194596369419497268.post-4344708879953864027</guid><pubDate>Sat, 21 Nov 2009 07:33:00 +0000</pubDate><atom:updated>2009-11-20T23:33:11.623-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">CSS Template 3 Colloum</category><title>Hanging CSS Tempalte Free Donload</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_TWrEVKacZdI/SweWzOg6hFI/AAAAAAAAAJw/XZRPplTFAXY/s1600/06.bmp" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_TWrEVKacZdI/SweWzOg6hFI/AAAAAAAAAJw/XZRPplTFAXY/s400/06.bmp" yr="true" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.ziddu.com/download/7443364/hanging.zip.html"&gt;Download&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><link>http://ms-adam.blogspot.com/2009/11/hanging-css-tempalte-free-donload.html</link><author>noreply@blogger.com (Mr. BlOgS)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="http://4.bp.blogspot.com/_TWrEVKacZdI/SweWzOg6hFI/AAAAAAAAAJw/XZRPplTFAXY/s72-c/06.bmp" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1194596369419497268.post-909245981486264110</guid><pubDate>Sat, 21 Nov 2009 07:27:00 +0000</pubDate><atom:updated>2009-11-20T23:27:30.089-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">CSS Template 3 Colloum</category><title>Ignitision Css Template Free Download</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_TWrEVKacZdI/SweWGLi9NiI/AAAAAAAAAJo/BtO8BvhntTU/s1600/05.bmp" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_TWrEVKacZdI/SweWGLi9NiI/AAAAAAAAAJo/BtO8BvhntTU/s400/05.bmp" yr="true" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.ziddu.com/download/7443334/ignition.zip.html"&gt;Download&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><link>http://ms-adam.blogspot.com/2009/11/ignitision-css-template-free-download.html</link><author>noreply@blogger.com (Mr. BlOgS)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="http://3.bp.blogspot.com/_TWrEVKacZdI/SweWGLi9NiI/AAAAAAAAAJo/BtO8BvhntTU/s72-c/05.bmp" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1194596369419497268.post-2464001931593937497</guid><pubDate>Sat, 21 Nov 2009 07:17:00 +0000</pubDate><atom:updated>2009-11-20T23:17:00.754-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">CSS Template 2 Colloum</category><title>Clearbreeze Css Tempalte Free Download</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_TWrEVKacZdI/SweTkpk8blI/AAAAAAAAAJg/Zat9acfjpVg/s1600/04.bmp" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_TWrEVKacZdI/SweTkpk8blI/AAAAAAAAAJg/Zat9acfjpVg/s400/04.bmp" yr="true" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.ziddu.com/download/7443256/clearbreeze.zip.html"&gt;Download&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><link>http://ms-adam.blogspot.com/2009/11/clearbreeze-css-tempalte-free-download.html</link><author>noreply@blogger.com (Mr. BlOgS)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="http://4.bp.blogspot.com/_TWrEVKacZdI/SweTkpk8blI/AAAAAAAAAJg/Zat9acfjpVg/s72-c/04.bmp" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1194596369419497268.post-9138838238419603378</guid><pubDate>Sat, 21 Nov 2009 07:12:00 +0000</pubDate><atom:updated>2009-11-20T23:12:55.350-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">CSS Template 2 Colloum</category><title>Sandstone Css Template Free Download</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_TWrEVKacZdI/SweSUtD9HgI/AAAAAAAAAJY/HCXAQRVF-9Q/s1600/03.bmp" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_TWrEVKacZdI/SweSUtD9HgI/AAAAAAAAAJY/HCXAQRVF-9Q/s400/03.bmp" yr="true" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.ziddu.com/download/7443224/sandstone.zip.html"&gt;Download&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><link>http://ms-adam.blogspot.com/2009/11/sandstone-css-template-free-download.html</link><author>noreply@blogger.com (Mr. BlOgS)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="http://1.bp.blogspot.com/_TWrEVKacZdI/SweSUtD9HgI/AAAAAAAAAJY/HCXAQRVF-9Q/s72-c/03.bmp" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1194596369419497268.post-1004304227154951620</guid><pubDate>Sat, 21 Nov 2009 07:04:00 +0000</pubDate><atom:updated>2009-11-20T23:05:46.633-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">CSS Template 2 Colloum</category><title>Yosemite Template CSS Free Download</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_TWrEVKacZdI/SweQSOEfv1I/AAAAAAAAAJQ/DPJUEd8sTOY/s1600/02.bmp" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_TWrEVKacZdI/SweQSOEfv1I/AAAAAAAAAJQ/DPJUEd8sTOY/s400/02.bmp" yr="true" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.ziddu.com/download/7443178/yosemite.zip.html"&gt;Download&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><link>http://ms-adam.blogspot.com/2009/11/yosemite-template-css-free-download.html</link><author>noreply@blogger.com (Mr. BlOgS)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="http://1.bp.blogspot.com/_TWrEVKacZdI/SweQSOEfv1I/AAAAAAAAAJQ/DPJUEd8sTOY/s72-c/02.bmp" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1194596369419497268.post-4986737778918252050</guid><pubDate>Sat, 21 Nov 2009 07:00:00 +0000</pubDate><atom:updated>2009-11-20T23:00:16.565-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">CSS Template</category><title>Solusion Template CSS Free Download</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_TWrEVKacZdI/SwePfMgzUoI/AAAAAAAAAJI/XP1WcUzbMiY/s1600/01.bmp" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_TWrEVKacZdI/SwePfMgzUoI/AAAAAAAAAJI/XP1WcUzbMiY/s400/01.bmp" yr="true" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.ziddu.com/download/7443164/solutions.zip.html"&gt;Download&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><link>http://ms-adam.blogspot.com/2009/11/solusion-template-css-free-download.html</link><author>noreply@blogger.com (Mr. BlOgS)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="http://1.bp.blogspot.com/_TWrEVKacZdI/SwePfMgzUoI/AAAAAAAAAJI/XP1WcUzbMiY/s72-c/01.bmp" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1194596369419497268.post-202679751634904085</guid><pubDate>Sat, 21 Nov 2009 06:51:00 +0000</pubDate><atom:updated>2009-11-20T22:52:51.842-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">3 Colloum</category><title>Black and Blue Template Blogspot 3 Colloum</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_TWrEVKacZdI/SweNk78W87I/AAAAAAAAAJA/EehaHf-PeKM/s1600/Black-and-Blue-blogspot-templates_thumb%5B2%5D.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_TWrEVKacZdI/SweNk78W87I/AAAAAAAAAJA/EehaHf-PeKM/s400/Black-and-Blue-blogspot-templates_thumb%5B2%5D.jpg" yr="true" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.ziddu.com/download/7443150/Black_and_Blue.zip.html"&gt;Download&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><link>http://ms-adam.blogspot.com/2009/11/black-and-blue-template-blogspot-3.html</link><author>noreply@blogger.com (Mr. BlOgS)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="http://3.bp.blogspot.com/_TWrEVKacZdI/SweNk78W87I/AAAAAAAAAJA/EehaHf-PeKM/s72-c/Black-and-Blue-blogspot-templates_thumb%5B2%5D.jpg" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1194596369419497268.post-1877943233693153974</guid><pubDate>Sat, 21 Nov 2009 06:46:00 +0000</pubDate><atom:updated>2009-11-20T22:46:28.078-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Blogspot Template Free</category><title>Harry Potter Template Blogspot Multi Colloum</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_TWrEVKacZdI/SweLnNMPctI/AAAAAAAAAI4/kLdnI8auwRk/s1600/MagzStyle-Slider-blogger-template_thumb%5B2%5D.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_TWrEVKacZdI/SweLnNMPctI/AAAAAAAAAI4/kLdnI8auwRk/s400/MagzStyle-Slider-blogger-template_thumb%5B2%5D.jpg" yr="true" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.ziddu.com/download/7443115/template-magzslide-final.rar.html"&gt;Download&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><link>http://ms-adam.blogspot.com/2009/11/harry-potter-template-blogspot-multi.html</link><author>noreply@blogger.com (Mr. BlOgS)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="http://1.bp.blogspot.com/_TWrEVKacZdI/SweLnNMPctI/AAAAAAAAAI4/kLdnI8auwRk/s72-c/MagzStyle-Slider-blogger-template_thumb%5B2%5D.jpg" width="72"/><thr:total>0</thr:total></item></channel></rss>