<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-3369726969516371715</atom:id><lastBuildDate>Thu, 05 Sep 2024 17:37:03 +0000</lastBuildDate><category>Create Table of Contents</category><category>HTML Image</category><category>HTML Llink</category><category>HTML Table</category><category>Script</category><category>Table of Contents</category><category>create share button</category><title>Dee is Learning Codes</title><description>Nothing to describe... Its all about code, code, and more codes. HTML codes, CSS, Javascript, ... gonna learn &#39;em all.</description><link>http://d-codes.blogspot.com/</link><managingEditor>noreply@blogger.com (Dee)</managingEditor><generator>Blogger</generator><openSearch:totalResults>6</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3369726969516371715.post-6804811622086903695</guid><pubDate>Fri, 04 Jun 2010 08:07:00 +0000</pubDate><atom:updated>2010-06-05T00:31:20.320+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Create Table of Contents</category><category domain="http://www.blogger.com/atom/ns#">Script</category><title>Create Table of Contents</title><description>I&#39;m using my Feed to create the Table of Contents for my blogs. You can see the example &lt;a href=&quot;http://dkids-zone.blogspot.com/2010/04/sitemap.html&quot; target=&quot;blank&quot;&gt;HERE&lt;/a&gt;, &lt;a href=&quot;http://d-codes.blogspot.com/2010/04/table-of-contents.html&quot; target=&quot;blank&quot;&gt;HERE&lt;/a&gt;, and &lt;a href=&quot;http://d-aboutlifes.blogspot.com/2009/08/table-of-content.html&quot; target=&quot;blank&quot;&gt;HERE&lt;/a&gt;. And here is the script I got from &lt;a href=&quot;http://feedburner.google.com/&quot; target=&quot;blank&quot;&gt;Google Feed Burner&lt;/a&gt; to create this table of contents :&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;background-color: #8feafd;&quot;&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;&amp;lt;script src=&quot;&lt;span style=&quot;color: #cc0000;&quot;&gt;http://feeds.feedburner.com/dkids-zone&lt;/span&gt;?format=sigpro&quot; type=&quot;text/javascript&quot; &amp;gt;&amp;lt;/script&amp;gt;&amp;lt;noscript&amp;gt;&amp;lt;p&amp;gt;Subscribe to RSS headline updates from: &amp;lt;a href=&quot;&lt;span style=&quot;color: #cc0000;&quot;&gt;http://feeds.feedburner.com/dkids-zone&lt;/span&gt;&quot;&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt; &amp;lt;/noscript&amp;gt;&lt;/div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;b&gt;Note :&lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Activate the &quot;BuzzBoost&quot; in your feed, and set the Number of Items to Display: All.&lt;/li&gt;
&lt;li&gt;Change my feed URL with your own feed URL (shown in red).&lt;/li&gt;
&lt;/ul&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-4672079788604794&quot;;
/* 300x250, dibuat 10/05/10 feed */
google_ad_slot = &quot;3857554995&quot;;
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://d-codes.blogspot.com/2010/06/create-table-of-contents.html</link><author>noreply@blogger.com (Dee)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3369726969516371715.post-3457857812443162346</guid><pubDate>Tue, 18 May 2010 12:49:00 +0000</pubDate><atom:updated>2010-05-18T20:02:10.632+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">HTML Table</category><title>Create Table</title><description>Tables are defined with &amp;lt;table&amp;gt; tag, and a table is divided into rows (defined with &amp;lt;tr&amp;gt; tag) which are divided again into data cells (defined with &amp;lt;td&amp;gt; tag). tr stands for table rows and td stands for table data. A data cell can contain text, images, lists, paragraphs, forms, horizontal  rules, tables, etc.&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;background-color: #8FEAFD;&quot;&gt;&amp;lt;table border=&quot;1&quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;1st row, 1st cell&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;1st row, 2nd cell&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;2nd row, 1st cell&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;2nd row, 2nd cell&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;/div&gt;&lt;br /&gt;
The codes above will produce this table below :&lt;br /&gt;
&lt;table border=&quot;1&quot;&gt;&lt;tr&gt;   &lt;td&gt;1st row, 1st cell&lt;/td&gt;   &lt;td&gt;1st row, 2nd cell&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt;   &lt;td&gt;2nd row, 1st cell&lt;/td&gt;   &lt;td&gt;2nd row, 2nd cell&lt;/td&gt; &lt;/tr&gt;
&lt;/table&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-4672079788604794&quot;;
/* 300x250, dibuat 10/05/10 feed */
google_ad_slot = &quot;3857554995&quot;;
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://d-codes.blogspot.com/2010/05/create-table.html</link><author>noreply@blogger.com (Dee)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3369726969516371715.post-8959291343200113138</guid><pubDate>Mon, 10 May 2010 16:41:00 +0000</pubDate><atom:updated>2010-05-10T23:41:13.617+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">create share button</category><title>Share Button</title><description>Want to put this cool share button &lt;img src=&quot;http://s7.addthis.com/static/btn/v2/lg-share-en.gif&quot; /&gt; on your page ? It&#39;s very easy to do. All you have to do is go &lt;a href=&quot;http://www.addthis.com/&quot; target=&quot;blank&quot;&gt;HERE&lt;/a&gt;, follow the instruction, and there you have it !&lt;br /&gt;
&lt;br /&gt;
Or maybe I&#39;ll explain a little bit, but sorry, it&#39;s only for those who are using Blogger service. But don&#39;t worry, for others, you can go &lt;a href=&quot;http://www.addthis.com/help/installing-addthis&quot; target=&quot;blank&quot;&gt;here&lt;/a&gt; to get more instruction.&lt;br /&gt;
&lt;br /&gt;
1. Sign in to your Blogger account or anywhere you want to put this share box (your website, WordPress, Blogger, or MySpace).&lt;br /&gt;
&lt;br /&gt;
2. Click &lt;a href=&quot;http://www.addthis.com/&quot; target=&quot;blank&quot;&gt;HERE&lt;/a&gt; and sign up. (*You could just create this share button without signing up, but I recommend you to sign up to get your analytics data collected, so you&#39;ll be able to see how many times your page is being shared and where to. And even how many clickbacks !)&lt;br /&gt;
&lt;br /&gt;
3. Select your service (website, WordPress, Blogger, or MySpace) and choose the button style.&lt;br /&gt;
&lt;br /&gt;
4. Once you got the code, go back to your Blogger page and go to layout - edit HTML. Check the expand widget templates box and then find this code :&lt;br /&gt;
&lt;br /&gt;
&lt;textarea cols=&quot;40&quot; name=&quot;txt&quot; rows=&quot;3&quot; style=&quot;background: none repeat scroll 0% 0% rgb(143, 234, 253);&quot;&gt; div class=&#39;post-footer&#39; &lt;/textarea&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;color: red;&quot;&gt;*note:&lt;/span&gt; use &lt;span style=&quot;font-family: Arial,Helvetica,sans-serif;&quot;&gt;ctrl+f&lt;/span&gt; to find the code easier.&lt;br /&gt;
&lt;br /&gt;
5. Copy the code you just got from here, and paste right after &lt;b&gt;div class=&#39;post-footer&#39;&lt;/b&gt; tag.&lt;br /&gt;
&lt;br /&gt;
6. Click preview button, ...like that huh ? &lt;img src=&quot;http://www.anikaos.com/0018-chikas_kaoani/chikas_pink08.gif&quot; /&gt;. &lt;br /&gt;
&lt;br /&gt;
7. And finally, last but not least, save your project to get it done !&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;center&gt;&lt;img src=&quot;http://www.anikaos.com/0018-chikas_kaoani/chikas_pink10.gif&quot; /&gt;&lt;/center&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-4672079788604794&quot;;
/* 300x250, dibuat 10/05/10 feed */
google_ad_slot = &quot;3857554995&quot;;
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://d-codes.blogspot.com/2010/05/share-button.html</link><author>noreply@blogger.com (Dee)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3369726969516371715.post-7669010019316126199</guid><pubDate>Tue, 04 May 2010 11:41:00 +0000</pubDate><atom:updated>2010-05-04T19:38:09.807+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">HTML Image</category><title>Add an Image</title><description>To add an image to your page, simply copy the code below, and replace that image adress with your own image adress:&lt;br /&gt;
&lt;br /&gt;
&lt;div&gt;&lt;form name=&quot;copy&quot;&gt;&lt;input onclick=&quot;javascript:this.form.txt.focus();this.form.txt.select();&quot; type=&quot;button&quot; value=&quot;Highlight All&quot; /&gt;&lt;br /&gt;
&lt;textarea cols=&quot;40&quot; name=&quot;txt&quot; rows=&quot;3&quot; style=&quot;background: none repeat scroll 0% 0% rgb(143, 234, 253);&quot;&gt;&lt;img src=&quot;URL image address&quot;&gt;&lt;/textarea&gt;&lt;/form&gt;&lt;/div&gt;&lt;br /&gt;
Example :&lt;br /&gt;
&lt;br /&gt;
This code below :&lt;br /&gt;
&lt;textarea cols=&quot;40&quot; name=&quot;txt&quot; rows=&quot;3&quot; style=&quot;background: none repeat scroll 0% 0% rgb(143, 234, 253);&quot;&gt;&lt;img src=&quot;http://s3.tinypic.com/ztt8j7_th.jpg&quot;&gt;&lt;/textarea&gt;&lt;br /&gt;
&lt;br /&gt;
will produce this image :&lt;br /&gt;
&lt;img src=&quot;http://s3.tinypic.com/ztt8j7_th.jpg&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
And by setting the width and the height, this code below :&lt;br /&gt;
&lt;br /&gt;
&lt;textarea cols=&quot;40&quot; name=&quot;txt&quot; rows=&quot;3&quot; style=&quot;background: none repeat scroll 0% 0% rgb(143, 234, 253);&quot;&gt;&lt;img width=&quot;75&quot; height=&quot;75px&quot; src=&quot;http://s3.tinypic.com/ztt8j7_th.jpg&quot;&gt;&lt;/textarea&gt;&lt;br /&gt;
&lt;br /&gt;
will produce this smaller image :&lt;br /&gt;
&lt;img width=&quot;75&quot; height=&quot;75px&quot; src=&quot;http://s3.tinypic.com/ztt8j7_th.jpg&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
And don&#39;t forget to always include &lt;b&gt;alt&lt;/b&gt; attribute for your each image code, because it is used to define an alternate text for your image. So, if your image is not loaded properly, then the browser will display your alternate text instead of your image. And here is how to include &lt;b&gt;alt&lt;/b&gt; attribute to an image :&lt;br /&gt;
&lt;br /&gt;
&lt;div&gt;&lt;form name=&quot;copy&quot;&gt;&lt;input onclick=&quot;javascript:this.form.txt.focus();this.form.txt.select();&quot; type=&quot;button&quot; value=&quot;Highlight All&quot; /&gt;&lt;br /&gt;
&lt;textarea cols=&quot;40&quot; name=&quot;txt&quot; rows=&quot;3&quot; style=&quot;background: none repeat scroll 0% 0% rgb(143, 234, 253);&quot;&gt;&lt;img src=&quot;http://s3.tinypic.com/ztt8j7_th.jpg&quot; alt=&quot;Dee - About Life&quot;&gt;&lt;/textarea&gt;&lt;/form&gt;&lt;/div&gt;&lt;br /&gt;
By including that alt attribute, if the image is not loaded properly, anyone then will see a text : Dee - About Lifes, instead of the image.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-4672079788604794&quot;;
/* 300x250, dibuat 10/05/10 feed */
google_ad_slot = &quot;3857554995&quot;;
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://d-codes.blogspot.com/2010/05/add-image.html</link><author>noreply@blogger.com (Dee)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3369726969516371715.post-5810820204110997228</guid><pubDate>Sun, 25 Apr 2010 08:00:00 +0000</pubDate><atom:updated>2010-06-04T15:06:29.428+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Table of Contents</category><title>Table of Contents</title><description>&lt;script src=&quot;http://feeds.feedburner.com/deecodes?format=sigpro&quot; type=&quot;text/javascript&quot; &gt;&lt;/script&gt;&lt;noscript&gt;&lt;p&gt;Subscribe to RSS headline updates from: &lt;a href=&quot;http://feeds.feedburner.com/deecodes&quot;&gt;&lt;/a&gt;&lt;br/&gt;Powered by FeedBurner&lt;/p&gt;&lt;/noscript&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-4672079788604794&quot;;
/* 300x250, dibuat 10/05/10 feed */
google_ad_slot = &quot;3857554995&quot;;
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://d-codes.blogspot.com/2010/04/table-of-contents.html</link><author>noreply@blogger.com (Dee)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3369726969516371715.post-3198421086368659008</guid><pubDate>Sat, 24 Apr 2010 17:43:00 +0000</pubDate><atom:updated>2010-05-04T19:43:06.524+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">HTML Llink</category><title>Create a Link</title><description>This is a simple code to create a text link :&lt;br /&gt;
&lt;br /&gt;
&lt;div&gt;&lt;form name=&quot;copy&quot;&gt;&lt;input onclick=&quot;javascript:this.form.txt.focus();this.form.txt.select();&quot; type=&quot;button&quot; value=&quot;Highlight All&quot;&gt;&lt;/br&gt;&lt;p&gt;&lt;textarea cols=&quot;40&quot; name=&quot;txt&quot; rows=&quot;5&quot; style=&quot;background: #8FEAFD&quot;&gt;&lt;a href=&quot;destination URL adress&quot;&gt;your words go here&lt;/a&gt;&lt;/textarea&gt;&lt;/p&gt;&lt;/div&gt;&lt;/form&gt;&lt;br /&gt;
Example :&lt;br /&gt;
&lt;textarea cols=&quot;40&quot; name=&quot;txt&quot; rows=&quot;5&quot; style=&quot;background: #8FEAFD&quot;&gt;&lt;a href=&quot;http://dkids-zone.blogspot.com/&quot;&gt;Kids Zone&lt;/a&gt;&lt;/textarea&gt;&lt;/br&gt;&lt;br /&gt;
That code will produce this link : &lt;a target=&quot;blank&quot; href=&quot;http://dkids-zone.blogspot.com/&quot;&gt;Kids Zone&lt;/a&gt; and will go to my &lt;a href=&quot;http://dkids-zone.blogspot.com/&quot;&gt;Kids Zone&lt;/a&gt; Page.&lt;br /&gt;
&lt;br /&gt;
And now is a simple code to create a link using an image :&lt;br /&gt;
&lt;br /&gt;
&lt;div&gt;&lt;form name=&quot;copy&quot;&gt;&lt;input onclick=&quot;javascript:this.form.txt.focus();this.form.txt.select();&quot; type=&quot;button&quot; value=&quot;Highlight All&quot;&gt;&lt;/br&gt;&lt;p&gt;&lt;textarea cols=&quot;40&quot; name=&quot;txt&quot; rows=&quot;5&quot; style=&quot;background: #8FEAFD&quot;&gt;&lt;a href=&quot;destination URL adress&quot;&gt;&lt;img src=&quot;image location&quot;&gt;&lt;/a&gt;&lt;/textarea&gt;&lt;/p&gt;&lt;/div&gt;&lt;/form&gt;&lt;br /&gt;
Example :&lt;br /&gt;
&lt;textarea cols=&quot;40&quot; name=&quot;txt&quot; rows=&quot;5&quot; style=&quot;background: #8FEAFD&quot;&gt;&lt;a href=&quot;http://d-aboutlifes.blogspot.com/&quot;&gt;&lt;img src=&quot;http://s3.tinypic.com/ztt8j7_th.jpg&quot; /&gt;&lt;/a&gt;&lt;/textarea&gt;&lt;br /&gt;
&lt;br /&gt;
Code above will produce this image below, and if you click on it, you will go to &lt;a target=&quot;blank&quot; href=&quot;http://d-aboutlifes.blogspot.com/&quot;&gt;My Note&lt;/a&gt; page.&lt;br /&gt;
&lt;a href=&quot;http://d-aboutlifes.blogspot.com/&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; alt=&quot;http://d-aboutlifes.blogspot.com/&quot; width=&quot;125&quot; src=&quot;http://s3.tinypic.com/ztt8j7_th.jpg&quot; /&gt;&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-4672079788604794&quot;;
/* 300x250, dibuat 10/05/10 feed */
google_ad_slot = &quot;3857554995&quot;;
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</description><link>http://d-codes.blogspot.com/2010/04/educational.html</link><author>noreply@blogger.com (Dee)</author><thr:total>0</thr:total></item></channel></rss>