Tampilkan postingan dengan label Tutorial. Tampilkan semua postingan
Tampilkan postingan dengan label Tutorial. Tampilkan semua postingan

Meta Tag For Blogger Blogspot

Posted by Unknown Senin, 10 Mei 2010 4 komentar

Different Meta Tags For Each Post Blogger


What's Different Meta Tags For Each Post in Blogger?

By default if you're adding Meta Tags to blogger template, then all of your page including home page will have the same Meta Tags Description. Is it wrong? No. It's just when you submitted your blog to google then you'll have duplicate meta tags description. different Meta Tags Description in each post will be more google friendly.

Step by Step to add Different Meta tags description For Each Post in your blogspot blog.

Step 1 Install title tags optimized


<b:include data='blog' name='all-head-content'/>
<b:if cond='data:blog.pageType == &quot;index&quot;'>
<title><data:blog.pageName/> | <data:blog.title/></title>
<b:else/>
<title><data:blog.pageTitle/></title>
</b:if>
<b:skin><![CDATA[/*

Step 2 Add Meta tag Description and Meta Keywords


<b:if cond='data:blog.url == data:blog.homepageUrl'>
<meta content='Your home page description' name='description'/>
<meta content='your keywords, keywords1, keyword2' name='keywords'/>
</b:if>

<b:if cond='data:blog.pageType == &quot;item&quot;'>
<meta expr:content='data:blog.pageTitle' name='Description'/>
<meta expr:content='data:blog.pageName + &quot;, your keywords, keywords1, keyword2 &quot;' name='keywords'/>
</b:if>

Step 3 Change The Blue Text To Your Own


Step 4 Your Final code Should be like below


<b:include data='blog' name='all-head-content'/>
<b:if cond='data:blog.pageType == &quot;index&quot;'>
<title><data:blog.pageName/> | <data:blog.title/></title>
<b:else/>
<title><data:blog.pageTitle/></title>
</b:if>

<b:if cond='data:blog.url == data:blog.homepageUrl'>
<meta content='Your home page description' name='description'/>
<meta content='your keywords, keywords1, keyword2' name='keywords'/>
</b:if>

<b:if cond='data:blog.pageType == &quot;item&quot;'>
<meta expr:content='data:blog.pageTitle' name='Description'/>
<meta expr:content='data:blog.pageName + &quot;, your keywords, keywords1, keyword2 &quot;' name='keywords'/>
</b:if>

<b:skin><![CDATA[/*

Step 5. Save it and Done. For question please refer to this page


Different Meta Tags For Each Post Blogger

Good luck.

Baca Selengkapnya ....

Make Auto Read More Functions

Posted by Unknown Minggu, 21 Maret 2010 3 komentar
Make Auto Read More Functions to blog is very important, caused this function is SEO friendly and make visitor possible to continuous surfing to your site. This time, I would be give tips and trick to make "Auto Read More" without file javascript hosting to others hosting site. If you already have "Manually Read More" function, you can remove first and reinstall with this function. You can remove this script in your posting manually with called function : <div class="fullpost">...</div> or <span class="fullpost">...</span> where this function usually put in our posting page. This version Auto Read More very amazing caused this version can make cut sentence by automated function and make your picture in posting visible to appear, caused your image in posting page created image thumbnail with first sentence paragraph. But only that, we can adjust total number character and adjust image thumbnail size.
See example screenshot bellow:

Make Auto Read More Functions

Note: If you already put "Manual Read More", must be returned back to original script, remove this script code bellow, every template maybe different, but we must adjust to normal, please see code bellow and make normal script in your template.




<div class='post-header-line-1'/>
<div class='post-body'>

<b:if cond='data:blog.pageType == "item"'>
<style>.fullpost{display:inline;}</style>
<p><data:post.body/></p>
<b:else/>

<style>.fullpost{display:none;}</style>
<p><data:post.body/></p>

<a expr:href='data:post.url'>Readmore</a>

</b:if>

<div style='clear: both;'/>

After normal adjust that script above, continuous to EDIT HTML and found </head>,copy-paste and put this script bellow in above code script </head>, and continuous "Make Auto Read More Functions".





<script type='text/javascript'>
var thumbnail_mode = "float" ;

summary_noimg = 250;
summary_img = 250;
img_thumb_height = 120;
img_thumb_width = 120;
</script>
<script type='text/javascript'>

//<![CDATA[

function removeHtmlTag(strx,chop){
if(strx.indexOf("<")!=-1)
{
var s = strx.split("<");
for(var i=0;i<s.length;i++){
if(s[i].indexOf(">")!=-1){
s[i] = s[i].substring(s[i].indexOf(">")+1,s[i].length);
}
}
strx = s.join("");
}
chop = (chop < strx.length-1) ? chop : strx.length-2;
while(strx.charAt(chop-1)!=' ' && strx.indexOf(' ',chop)!=-1) chop++;
strx = strx.substring(0,chop-1);
return strx+'...';
}
function createSummaryAndThumb(pID){
var div = document.getElementById(pID);
var imgtag = "";
var img = div.getElementsByTagName("img");
var summ = summary_noimg;
if(img.length>=1) {
imgtag = '<span style="float:left; padding:0px 10px 5px 0px;"><img src="'+img[0].src+'" width="'+img_thumb_width+'px" height="'+img_thumb_height+'px"/></span>';
summ = summary_img;
}
var summary = imgtag + '<div>' + removeHtmlTag(div.innerHTML,summ) + '</div>';
div.innerHTML = summary;
}
//]]>
</script>



On EDIT HTML, check "Expand widget template" and found this script code bellow:
<data:post.body/>

If you have been found <data:post.body/>, copy-paste this script code bellow:
<b:if cond='data:blog.pageType != "item"'>

<div expr:id='"summary" + data:post.id'><data:post.body/></div>

<script type='text/javascript'>createSummaryAndThumb("summary<data:post.id/>");</script>

<span class='rmlink' style='float:left'><a expr:href='data:post.url' expr:title='data:post.title'>Read More »»» <data:post.title/></a></span>
</b:if>
<b:if cond='data:blog.pageType == &quot;item&quot;'><data:post.body/></b:if>




Save your template and see the result.

Remarks:



var thumbnail_mode = "float"; (decided to put image thumbnail in left "float", if you not like this, change with option "no-float")
summary_noimg = 250; (decided how much sentences character will be appear without image thumbnail)
summary_img = 250;(decided how much sentences character will be appear with image thumbnail)
img_thumb_height = 120; (adjust height thumbnail pixel)
img_thumb_width = 120; (adjust width thumbnail pixel)


Good Luck

Baca Selengkapnya ....

Breadcrumbs For Blogger

Posted by Unknown Senin, 22 Februari 2010 3 komentar

3" Navigation Aircraft Aluminum Compass Aviation ToolAll of us might have seen breadcrumbs on most wordpress blog.
So why not implement a breadcrumb for the blogger blogs. For those who don't know what a breadcrumb is, here is a little definition from wikipedia.
Breadcrumbs or breadcrumb trail is a navigation aid used in user interfaces. It gives users a way to keep track of their location within programs or documents.
The trails like Home >> Label >> Post Name are the breadcrumbs.

Baca Selengkapnya ....

Google DNS For Your Computer

Posted by Unknown Rabu, 17 Februari 2010 12 komentar
What Would Google Do?Google recently launched their own DNS Service, which they proclaim will make web surfing faster, safer and more reliable than the present Open DNS service.

Generally, the DNS server is maintained by your Internet Service Provider (ISP), but now Google has introduced this feature by which you can instruct your computer to use the Google’s DNS server instead of your Open DNS.

So for those of whom are keenly waiting to experience this new service, follow the below mentioned steps to make a switch to Google DNS.

Baca Selengkapnya ....

Website Dengan Domain & Hosting Gratis

Posted by Unknown Senin, 15 Februari 2010 13 komentar
Visit this site.
Anda ingin punya situs dengan domain nama sendiri dan web hosting gratis, anda bisa mencoba daftar di www.hyperwebenable.com. Dengan mendaftar di situs ini anda bisa mendapatkan sebuah situs seperti www.nama_anda.com tanpa biaya apapun. Ada beberapa syarat yang harus anda penuhi. Syarat utamanya adalah : tiap bulan anda minimal harus mengirim postingan 15 kali, atau jumlah pengunjung website anda 100 orang perhari. Berikut ini layanan yang diberikan oleh www.hyperwebenable.com:



Baca Selengkapnya ....

20 Listing Blog Directories

Posted by Unknown Minggu, 14 Februari 2010 2 komentar

The Art of SEO: Mastering Search Engine Optimization (Theory in Practice)Gaining exposure for your blog is critical to building a following, readership, and revenue. Besides the basic SEO steps of adding compelling and keyword friendly titles, URL structure and descriptions (along with the basic Wordpress SEO plugins) basic link building for blogs begins with listing them in blog directories.
Personally, I love launching a new blog, or adding one to an existing site, and watching the high valued links roll in. And as we know, BLOG = Better Listings On Google.
There are many paths to consider when building links to your site or blog such as link baiting or blogroll link swapping, but few are as easy to implement and cost effective as submitting to blog directories – and good link juice is essential to a healthy growing blog.

Baca Selengkapnya ....

Promote Your Blog

Posted by Unknown 2 komentar
The Secret Power of Blogging: How to Promote and Market Your Business, Organization, or Cause With Free BlogsBuilding an audience for your blog takes consistency and hard work. Fortunately, there are a few things you can do to help speed up the process of gaining new readers and ranking well in the Search Engines.

1. Comment at popular blogs
The best way to gain an audience is to become part of a community. Find popular blogs that cover a similar topic and participate in the comment section. If you've got good things to say, expect people to come looking for more...at your blog.

2. Submit to respected directories
First things first. Don't submit your blog to just any directory. First identify about five strong general directories, and then five niche directories. You may have to pay for these services, but doing so gets you extra exposure at many levels. You'll have to figure out the niche directories on your own. However, we've listed what we view as the top 4 general directories: 


3. Buy Text Links
The fastest and easiest way to do get results is to buy text links. The most reputable and effective text link company is Text Link Ads. They have tens of thousands of sites from which to pick from. Just find similarly themed sites with good prices and you're all set.

4. Google AdWords
Purchasing AdWords for strategic keywords related to your blog can bring in a substantial number of highly targeted new visitors. Before you use AdWords, consider doing research to make sure you are picking highly targeted keywords and not wasting your money.

5. Social Bookmarking Sites
Viral link building through social bookmarkers, social networks and social news sites can be very effective in promoting one's blog. For this to work out, bloggers need to know how to write attention-grabbing headlines and should be able to connect to fellow users of social media. Blog logistics providers like bLogics can also provide this service.

Baca Selengkapnya ....

Insert Keywords Meta Tags

Posted by Unknown Sabtu, 13 Februari 2010 4 komentar
The Findability Formula: The Easy, Non-Technical Approach to Search Engine Marketing
Let's pretend for the sake of this post that you've already done some keyword research using the Adwords Keyword Tool. You've come up with 5 keywords or keyword phrases that if properly implemented into your blog will bring you a great deal of organic search engine traffic.



Let's look at some typical ways of keyword optimization on a blog, first of all there's placing them in your content, placing them in your heading, placing them in your opening paragraph and making them bold or a bigger font size within your article. These techniques are great for building the foundation of your blog to get ranked in search engines but the the problem with these is that if you and I know about them then thousands of other people know about them too which isn't giving your blog the advantage, so how do you go above and beyond your competition?

To make your blog stand out in the crowd you need to start looking to the "dark side" of your blog by putting them in places that your readers won't see, places that are only visited by web crawlers, I'm referring to the HTML (HyperText Markup Language) structure of your blog.



Inserting Metadata


Metadata is used to give information about your information, in other words it helps describe certain tags within your HTML, but in our case will help us put more keywords on our blog.

There are several ways of doing this such as:
  • Title Meta tags
  • Description Meta tags
  • Keyword Meta tags
  • Heading Meta tags
  • Alt Text
The first four on the list are called metatags and are usually located between the "head" tags. There are four things you can put inside these tags, Title, Description, Keywords and Heading, here's an example that you can copy and paste right onto your blog and replace the data with your own.

<head>
<title>Your Blog Tittle Here</title>
<meta name="description" content="Write a short keyword-rich description about your blog">
<meta name="keywords" content="Enter keywords seperated by commas">
</head>

Another great way to insert keywords into the HTML section of your blog is to use what's called Alt Text. Alt Text stands for alternative text and is used to describe images on your site to search engines and for readers who can't view images on their computer/internet browser. Here's an example for you to imitate with your own images:

<img src="filename.jpg" alt="short description with a keyword"/>

It's not a hard task to do, especially if you've been into the depths of your HTML code before. Just like integrating any keywords within your blog you have to make sure your not keyword stuffing or you could end up in a worse position than you started. For example don't make your keyword metatags the same thing and if your picture is of a magnifying glass don't make the alt text camping trips, use it don't abuse it!

Have you guys ever used metadata before? did you find it helpful? any other Keyword integration tips?

Baca Selengkapnya ....

More Traffic and Blog Exchange

Posted by Unknown Jumat, 12 Februari 2010 3 komentar
Making the Most of Traffic ExchangesEvery Blogger wants traffic, the more traffic you get the more readers you'll have, the more money you'll make and the better your blog will be. There are thousands of ways to get traffic online these days, some will have more potential than others and some will have less, although traffic exchanges might only give you a small amount of pageviews and time on your site per visitor, it can give you hundreds of visitors a day (if you use them correctly) and that type of traffic is better than no traffic.

Traffic exchanges work based on how many sites you view, they have a specific amount of time you have to view each site which varies per exchange. They give you a ratio of sites you view to hits you'll get to your site, the best traffic exchanges have a 1:1 ratio so if you view 20 sites in a day you'll get 20 hits to your blog, if the ratio is 2:1 you'll get ten hits and so on.

Typically people use traffic exchanges to promote a product, instead of just having their homepage as the site that will receive hits they set it to their "sell page". They give a description of the product, some even have audio describing it, along with the price and a link to where they can buy it, usually a Paypal button. This could be great for your blog if it offers a product or service to sell.

Whatever you do DO NOT USE ADSENSE IF YOUR USING TRAFFIC EXCHANGES!!! So many people get banned from Adsense for using traffic exchanges because this goes against their policy, if one of your main sources of money is from adsense then do not use traffic exchanges.

The Traffic Exchange Strategy
Like I mentioned before traffic exchanges don't give you the best kind of traffic out there, so I wouldn't waste my time if I didn't have a good strategy behind it. First you'll need to get Firefox or another internet browser that has the capability to open multiple tabs in the same window. Sign up to around 10 traffic exchanges and open each one in a separate tab on your browser, now surf for about 20-30 minutes and this should get you a couple of hundred people to your blog. By using this strategy you won't have to wait for every single exchange to count down it's timer you can just go to the next one and once you reach the tab you started on the timer will have already counted down.

Here's a list of a bunch that I use:


Using Blog Exchanges For Your Blog
Blog exchanges work in the same way traffic exchanges do except these types of sites only allow blogs to be a part of their service. These give me way better pageview and time on site statistics, mainly because bloggers simply love to read other blogs, the only problem is that there are very few of these around.

Here are 3, I have found and use:
So what do you guys think? have you ever used traffic or blog exchanges before? what were your experiences? opinions?


Please, comment in this article...
Thanks and good luck earn much money and traffic.

Baca Selengkapnya ....

Reduce and Avoid Security Threats

Posted by Unknown 4 komentar

Everyday Computer have to deal with security threats such as ; viruses, spyware, worms, crackers, and phishing.These security threats may break your boot sector, software or data files, cause disturbance of internet traffic, create back door to permit unauthorized access to your computer, and steal secret information from Smart Best Info.
Here are 8 tips to protect your computer from security threats:
  1. Install an antivirus and antispyware program.
    Be careful. Do not accept any free scan and free download, Some free downloads could be spyware programs or malware that causing security hole in your system.
  2. Use security programs that provide active real time protection.
    However, free antivirus programs can only detect viruses that have already infected your computer, It can’t provide a protection. However, if your computer is already infected, you may not be able to reach the free virus scan sites at all.
  3. Be vigilant and selective about” free “
    Be careful about what you download to your computer. Don’t get a free games, freeware, free music files etc unless you are certain that they are safely.
  4. Keep your internet security programs up to date.
    Everyday new security threats are coming out, you require the most updated definition database to dispose these threats and made your computer secured.


  5. Configure a firewall to block any unsolicited communication.
    This can protect you from hacker attack.

  6. Use security patches
    Get a security patches for your application programs and browser programs. Some programs are vulnerable to malicious attack and the patches could solve these vulnerabilities.
  7. Be careful with email attachment and spam messages. 
    Don’t open unknown email attachment. An internet security program could protect your system through scanning the attachment before open and store it. Dispose spam messages and install a spam filter. A few spam messages are a nuisance but some contain links (phishing). viruses and spyware can also be spread using spam messages. Beware!

  8. Beware about hoaxes.
    If you receive an unknown email message. Don’t follow any instruction of this such as delete any file or spread the message to other people unless you know that the instruction is true.
If you follow all of the above, you can reduce the chance of malicious attack. However, malicious attacks come in various forms and they spread and attack your computer in different ways.

Baca Selengkapnya ....

Make Blog Contents

Posted by Unknown Sabtu, 30 Januari 2010 6 komentar

Creating Money-Making ContentTo make simple reader found our article with appear some page title, we use addition script in our template.
This session I will give you trick to make Blog Contents and described this trick.
Let's beginning following this instructions bellow:.

Step one:
- Open Blogger Draft in your blogger account.
- In Menu Dashboard go to Layout, select Edit HTML.
- Save your template before beginning this experiment.
- Click Expand Widget Template such as this screenshot bellow:


Daftar Isi Dibuat


Find this script code bellow:


<b:include data='post' name='post'/>




To easy way, you can use keyboard function, push Ctrl+F.
After found the script code above, remove and change with this script code bellow:




<!-- Post Contents -->
<b:if cond='data:blog.homepageUrl != data:blog.url'>
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<a expr:href='data:post.url'>
<div style='padding:6px 0 6px 5px;border-right:1px solid #ccc;border-bottom:1px solid #ccc;margin-bottom:2px;background:#E0ECF8;color:#FF0000;'>
<data:post.title/></div></a>
<b:else/>
<b:include data='post' name='post'/>
</b:if>
<b:else/>
<b:include data='post' name='post'/>
</b:if>






- Change your custom background and color font with your own like
   (see the color code here)
- Save your Template.



Step Two:
- Make Link from another page:
   
   See this example bellow:


   # Text Link:



All Blog Contents Posting

   
   Use script code bellow:
   <a href="http://Your Blog.blogspot.com/search?max-results=100">All Blog Contents Posting</a>


   # Form Link:







Use script code bellow:
<form action="http://Your Blog.blogspot.com/search?max-results="" target="_blank"><input type="submit" value="All Blog Contents Posting" /></form>


Notes:
-The maximum result such as that script code above, which mean result to appear "100"  
  pages title every a page, if you change "50" this mean you want appear 50 pages title every a page
-On the form link maximum appear only 20 pages title every a page
-Don't forget to change name your blog's URL to come up with results that match your desires




Good Luck.




Baca Selengkapnya ....

Problem Solving Error Shoutmix Widget

Posted by Unknown Jumat, 22 Januari 2010 18 komentar
OUR ILL WILLS (180-GRAM VINYL)On Thursday, January 21, 2010 Smart Best Info found error link visitor in Shoutmix as one of Guest Book / Chat Software. This problem make your visitor URL link can not appeared link to access in your visitor. Don't worry, I have tips and trick to problem solve about it. This is Smart Info for you, please follow instructions bellow:




1. Open Shoutmix software widget, and login your account
2. Select General box, and select Prune Messages


3. Select Delete All Message
    Enter your Password and click Apply Settings
4. Change Shoutmix widget with other guest book / chat widget software during you reinstall Shoutmix.
     This way to improve if you still use Shoutmix widget software, but the software maybe
      error in some days later, I am not guarantee this way.

5. You may have change with other alternative guest book / chat widget software such as:
6. Active comment in other Blogger's posting to know your URL as comment visitor.


Hopefully this guide can solve your problem, good luck.



Baca Selengkapnya ....

Free Blogger Template Generator

Posted by Unknown Senin, 18 Januari 2010 3 komentar
Blogger: Beyond the Basics: Customize and promote your blog with original templates, analytics, advertising, and SEO (From Technologies to Solutions)For newbie Blogger who did not understand about programming languages such as HTML, XML and CSS, do not be discouraged and ashamed for not being able to make their own templates. There are now lots of templates for blogger generator, and its use was not difficult. Just need a little imagination and high creativity. If you interested, I have a list of service providers to improve template. 3 sites blogger template generator below would be help you to create new template.

1.Page Column Layout Generator


2.Pimp My Profile - Blogger Editor


3.Trix Blogspot Template Generator


Good Luck

Baca Selengkapnya ....

How to Effective SEO Methods

Posted by Unknown 3 komentar
SEO Made Simple: Strategies For Dominating The World's Largest Search Engine (Volume 1)Off-page optimization or Link Building is one of the most important SEO challenges every website owner has to face. You can do whatever changes you wish to make on your website: changing structure, playing with keyword density and so on and optimize your content in different ways, but when you wish to make other people do something on their site for you, it's a different story.
The important question is "how to get links to my website?' well there are 5 effective ways to build links to your website in order to boost your link popularity and get you better search engine optimization rankings.


1. Article Submission
Write unique articles on a topic relevant to your website and submit them to the biggest article directories like ezinearticles, articlebiz, etc. There are lots of them on the Internet and most of them allow you to put 1 to 4 links to your website either in the body of the article or in the resource box or both.
The link value you get from article submission is not very big, but the upside is that you shape the content yourself; therefore the link will come from a topically relevant page. As an extra bonus you get some traffic from the article and if it's good enough it will be republished on more websites and blogs.

2. Blog Commenting
Blog commenting is another link-building technique that has become quite popular these days. Search the web for authoritative blogs in your niche that allow do-follow commenting and share your mind there. Make sure you read the post before commenting and try to make a point with your comment; don't just go on spamming blogs with links to your website, or you'll just get your comments deleted and end up with no links and a spoiled reputation.

3. Social Media
Social media websites can provide tons of valuable links if you manage to bring your SEO to the top. But you'll need all your creative power to do that and maybe a bit more. Since social media sites are seeing more and more spammy content submitted to them by marketers of all sorts and fashions, running a successful social media campaign gets harder every day.

4. Submission of Press Release
Write a press release about your company or product and submit it to PRWeb and similar resources. Take the time to make your press-release newsworthy and the chances that it will get syndicated increase depending on how good you manage to make it.

5. Directories Submission
There are a lot of directories on the internet where you can submit your website. Although links from them won't give you any drastic jump ups in the rankings, they are still worth submitting to, especially if you have a young website. Make sure you submit your URL into a relevant category.

These link building techniques will get you quality and relevant links that will add good value to your website's search engine rankings. To get the best results in SEO with your link building always keep track of the links you get and evaluate your off-page optimization campaign. The most efficient way to do it is to use special tools for link building.

Baca Selengkapnya ....

Color Code

Posted by Unknown Minggu, 17 Januari 2010 4 komentar
Color Code for web/blog color is very important and very influential on the appearance of web/blog design. The colorsare usually used for background, text, links, tables, etc. If the color combinations on your web/blog we do not match, or not pleasing to the eye, then this will make visitors of website/blog to become less convenient, and lazy to visit the website/blog again. For make colorson the web/blogs, we have to use Color Code. Because this way is very important in design website/blog, in this article I discussed about how to find colors with Color Code reference. Please see some example table listed the image Color Code. Easy enough to use it, you find color interested and see the Color Code, and than copy-paste in your website/blog to redesign.

Color Code



How to use HTML Color Codes?
With HTML color codes you can set the color of web site background, color of text, cells in tables and much more.

Using HTML color codes for web site background color:
<body style="background:#80BFFF">

Using HTML color codes for setting font/text color:
<span style="color:#80BFFF">

Using HTML color codes for table background color:
<table style="background:#80BFFF">

Using HTML color code for link color:
<a style="color:#80BFFF">

HTML Color Codes Theory
So you are wondering "Does this weird combination of letters and numbers have any meaning?" Well the answer is "Yes" and this is how it goes:)

HTML Codes format:
Each HTML code contains symbol "#" and 6 letters or numbers. These numbers are in hexadecimal numeral system. For example "FF" in hexadecimal represents number 255 in Decimal.

Meaning of symbols:
The first two symbols in HTML color code represents the intensity of red color. 00 is the least and FF is the most intense. The third and fourth represents intensity of green and fifth and sixth represents the intensity of blue. So with combining the intensity of red, green and blue we can mix almost any color that our heart desire;)

Examples:
#FF0000 - With this HTML code we tell browser to show maximum of red and no green and no blue. The result is of course pure red color:     

#00FF00 - This HTML code shows just green and no red and blue. The result is:     

#0000FF - This HTML code shows just blue and no red and green. The result is:     

#FFFF00 - Combination of red and green color gives us yellow:     

#CCEEFF - Take some red a bit more of green and maximum of blue to get color of sky:     



 


 

Baca Selengkapnya ....