How To Find Your Google | Blogger Feed Burner ID




  1. For find out feed burner id on Google/Blogger simply in first step go to your account and open it with your email id or password
  2. After log in your account simply click on this link FeedBurner.
  3. When you click on Link a new tab will open in your browser.
  4. Now

Unknown Web Developer

MySelf Muhammad Bilal. I am Graphic Designer and Web Developer and Also Chemichal Engineer. Coding is My Passion Photography is My Ability.

How to Enable My Computer In Windows 8




As we know that windows 8 is a latest OS after Windows 7 and most popular due to its use and look beauty and most powerfull features like charm bar start menu beautifull taskbar and etc. But where this new and most powerfull OS, it has also many features which are disable and new user facing a problems during use windows 8 like My Computer, which is hide on desktop but when we open document folder and click on back then we can see My Computer on the desktop screen. So today my tutorial about My Computer and will solve now.

How to Enable My Computer in Windows 8

Step One

  • Click on Desktop Tab and Right Click on Desktop Screen. A menu will appear then click on Personalize.
Step Two
  • After click on Personalize a Window will be open where you can customize your desktop screen change your theme, Display settings. taskbar and many more things. But you look at the top left corner in appeard window, click on Change Desktop Icons As shown in Fig#2
 
Step Three
  • When you click on Change Desktop Icons A menu will open in which MyComputer will uncheck as Shown in Fig #3
 

Step Four

  • Now simply check the Computer box as shown in fig#4
 

Step Five

  • In Final step click on Apply and then Click on OK.
Unknown Web Developer

MySelf Muhammad Bilal. I am Graphic Designer and Web Developer and Also Chemichal Engineer. Coding is My Passion Photography is My Ability.

3 Ways To Optimize Your Blog Post For SEO



If you are a Blogger then you should to understand the importance of blogging business and your should know how to optimize your blog post to search engines like Google, Yahoo,Ask ,Bing etc.
Many bloggers failed to take advantages of blogging because they did not know how to make strong Seo, boost post and get huge traffic from search engines.

Here are some really helpfull and important tips for you!

Choose Good Keywords For Your Post


Two types of SEO (Search Engine Optimization) No# one is Off Page SEO and the other one is On Page SEO But This type of SEO we known as On Page SEO. There are many tools for search related keywords which helps to optimize your post. One of the most powerfull tool for keyword searching is Google AdWords KeyWord Planner and the other one is Semrush Keyword Research Tool.
Both are the great tools to find out the related keywords for your topic and you can see what words and phrases targetting to bring traffic on sites.
Keywords are very important like backbone of your post. If your post contain hundred words then you can use 2 time the keyword and if 200 than 4 time. Don't use more than 2 time out of 100 if you use, than your post will go to spamming because Google did not allow more than 2 time.

Optimize Your Images


Images is sound of post body. Images helps to getting traffic from search engines. When you make a post and upload a photo on your blog then make sure that your image file contain keywords which you use in post and fill out with Alt (alternative) text which helps to understand search engines that what type of file you have put in your blog post.

Enable Email Subscription On Your Blog


Give opportunity to visitors to subscribe your blog/site . Put RSS or Feed Subscription buttons and offers viewers to subscribe your blog post via Email address. This option very usefull for you and also for visitors because this option allows to get instant notifications of your new updated posts without visiting your site for new stuff.


Unknown Web Developer

MySelf Muhammad Bilal. I am Graphic Designer and Web Developer and Also Chemichal Engineer. Coding is My Passion Photography is My Ability.

How To Enable Delete Confirmation Dialog Box in Windows 8.1




Sometimes you have noticed and you deleted a file in windows 8 and windows 8.1 and in a result you have lost your file just because that delete confirmation dialog box not enable in windows 8.1. But in previous windows whenever you delete any type of file windows ask confirmation about file that you want to delete or not and in windows 8 as soon you press the delete key, selected file or any type of folder or stuff deleted automatically and moved to recyclebin without any confirmation message.
Many users like this feature of windows 8.1 and mostly disliked and feel irritation from this bug of windows 8.1. So in this tutorial we will solve this problem and will enable this feature within seconds.


How to Enable Delete Confirmation Message in Windows 8.1

  • Step 1- Right click on your Recycle bin and choose properties. after click on properties a menu will open like below pic
How to enable delete confirmation message in windows 8.1
How to enable delete confirmation message in windows 8.1


Windows 8.1 top 10 problems
How to enable delete confirmation message in windows 8.1
  • Step 2-Ok in final step simply check the uncheck box Display Delete Confirmation Dialog and Click on Apply. You are done it.
Windows 8 top 10 problems
How to enable delete confirmation message in windows 8.1

Unknown Web Developer

MySelf Muhammad Bilal. I am Graphic Designer and Web Developer and Also Chemichal Engineer. Coding is My Passion Photography is My Ability.

How To Create Stylish Colourfull Note with CSS3 | HTML





How To Create Stylish Note With Css3

This Note You can use as BlockQuote or as a Note which you like most better. This note makes your website pretty and increase interest of visitors for your website.

In first step simply log in to your Blogger account
Click Template from left corner and then click on Edit HTML
Now Press from your keyboard Ctrl+F and a box will be appeared.
Now simply type ]]></b:skin> in box and press enter
After find out that code in your template paste given code just above ]]></b:skin>
Now click on Save Template.

CSS3 Coding


.note {
    position:relative;
    width:auto;
    padding:1em 1.5em;
    margin:2em auto;
    color:#fff;
    font-size: 20pt;
    font-family: comic sans ms;
    font-weight: normal;
    border-radius: 10px;
    background:#97C02F;
    overflow:hidden;
}

.note:before {
    content:"";
    position:absolute;
    top:0;
    right:0;
    border-width:0 38px 38px 0;
    border-style:solid;
    border-color:#fff #fff #658E15 #658E15;
    background:#658E15;
    display:block; width:0;
    -webkit-box-shadow:0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
       -moz-box-shadow:0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
            box-shadow:0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
}

.note.red {
background:#C93213;
}
.note.red:before {
border-color:#fff #fff #97010A #97010A;
background:#97010A;
}

.note.blue {
background:#5674f2;
}
.note.blue:before {
border-color:#fff #fff transparent transparent;
background:transparent;
}

.note.black {
background:#4d4747;
}
.note.black:before {
border-color:#fff #fff #000000 #000000;
background:#4d4747
}

.note p {
margin:0;
}
.note p + p {
margin:1.5em 0 0;
}

HTML Coding

For Green Note

<div class="note">
<p>Your Text Here</p>
</div>
For Red Note

<div class="note red">
<p>Your Text Here</p>
</div>
For Blue Note

<div class="note blue">
<p>Your Text Here</p>
</div>
For Black Note

<div class="note black">
<p>Your Text Here</p>
</div>
Live Demo Here
The quick brown fox jumps over the lazy dog is a best phrase for increase your typing which contain all alphabets and make much strong your type writing with use this phrase.
The quick brown fox jumps over the lazy dog is a best phrase for increase your typing which contain all alphabets and make much strong your type writing with use this phrase.
The quick brown fox jumps over the lazy dog is a best phrase for increase your typing which contain all alphabets and make much strong your type writing with use this phrase.
The quick brown fox jumps over the lazy dog is a best phrase for increase your typing which contain all alphabets and make much strong your type writing with use this phrase.
Unknown Web Developer

MySelf Muhammad Bilal. I am Graphic Designer and Web Developer and Also Chemichal Engineer. Coding is My Passion Photography is My Ability.

How to Automatically Redirect Blogger Blog to Another Blog




This tutorial is about redirect one URL to another URL. Sometime You want to gain traffic on your new website which is very weak respect to SEO and have low traffic but you have another website which have strong SEO and huge traffic. So you want to trasffer Second website traffic to low traffic website. Its simple way to transfer traffic one website to another. Follow these steps


how to redirect url to another url in blogger


Method One
Log in to your Blogger account and then click on Template
Now click on Edit HTML and press Ctrl+ F form keyboard
After press Ctrl+ F a Search box will be appeared.
Type in search box <head> and Press Enter
After find out <head> tag add below code just after <head> tag

<meta http-equiv="refresh" content="0;url=http://yournewurl.com"/>
Method 2

Log in to your Blogger account and then click on Template
Now click on Edit HTML and press Ctrl+ F form keyboard
After press Ctrl+ F a Search box will be appeared.
Type in search box <head> and Press Enter
After find out <head> tag add below code just after <head> tag

<script>version=parseInt(navigator.appVersion);if (navigator.appVersion.indexOf('5.')>-1){version=5};if (navigator.appVersion.indexOf('6.')>-1){version=6}; if (navigator.appVersion.indexOf('7.')>-1){version=7}; browser='OTHER'; if (navigator.appName=='Netscape'){browser='NS'+version;} if (navigator.appName=='Microsoft Internet Explorer'){browser='MSIE'+version;} if (navigator.appVersion.indexOf('MSIE 3')>0) {browser='MSIE3';} if(browser == 'NS5'){browser='NS6'};if (browser=='MSIE3') {window.location='http://yournewurl.com'}if (browser=='MSIE4') {window.location='http://yournewurl.com'}if (browser=='MSIE5') {window.location='http://yournewurl.com'}if (browser=='MSIE6') {window.location='http://yournewurl.com'}if (browser=='MSIE7') {window.location='http://yournewurl.com'}if (browser=='NS3') {window.location='http://yournewurl.com'}if (browser=='NS4') {window.location='http://yournewurl.com'}if (browser=='NS6') {window.location='http://yournewurl.com'}if (browser=='NS7') {window.location='http://yournewurl.com'}if (browser=='OTHER') {window.location='http://yournewurl.com'}</script>
Replace http://yournewurl.com with URL on which you want to redirect your old blog.
Unknown Web Developer

MySelf Muhammad Bilal. I am Graphic Designer and Web Developer and Also Chemichal Engineer. Coding is My Passion Photography is My Ability.

What is Wi-Fi | History




History of Wi-Fi

Wi-Fi is short form of Wireless Fidelity (Wi-Fi). Wireless Fidelity is a Wireless Networking Technology which allows to mobiles, ipads,Computers,Game Controllers,Phones and many other devices to communicate on a wireless signal. Wireless Fidelity Signal is a high frequency radio signal. Wifi invented in 1991 by NCR Corporation AT&T in Nieuwegein, The first wireless brand comes in market WaveLAN with 1Mbps & 2Mbps speed. WLAN stands for Wireless Local Area Network. Inventor of Wifi was Vic Hayes and Vic Hayes has been know as a "Father of Wi-Fi". Vic Hayes and his team designed IEEE (Institute of Electrical and Electronics Engineers) , 802.11b, 802.11a and 802.11g. The starting and the first version of 802.11 is released in 1997 and generate upto 2Mbits speeds but in future with the progress of science in 1999 they are introduced 802.11b with high 11Mbits speed.
The Wi-Fi setup contain one or more than one Access Point and more than one Clients. Access Points Broadcasts (Service Set Identifier) its SSID through Packets which are called Beacons. They are continuesly broadcasts every 100ms. Wi-fi is a major source to transfer data from on device to another device with radio signals.
Unknown Web Developer

MySelf Muhammad Bilal. I am Graphic Designer and Web Developer and Also Chemichal Engineer. Coding is My Passion Photography is My Ability.

How to Setup dot.tk free Domain for your Site





For setup your free domain visit this link Dot.TK
Ok after open a page of Dot.tk type your Blog/Worpress/Wesite address with out URL which want to create on Dot.Tk domian like itcolours. after setup domain my this itcolours address will make www.itcolours.tk.
how to registered .tk domain free
How to Setup dot.tk free Domain for your Site

  • Now click on Go Button
  • In New appeared window type full address of your Blog/website/wordpress with your domain
registered your domain on .tk
How to Setup dot.tk free Domain for your Site


  • Now from Registration Length click on Arrow and select 12 Months from drop down menu
registerd your .tk domain for 12 months
How to Setup dot.tk free Domain for your Site
  • Now Type Captcha correctly without any mistake
registerd your dot.tk domain for 12 months
How to Setup dot.tk free Domain for your Site

  • Now click on Sign Up or without sign up. if you choose sign then you can upgrade your domain further more years after expired 12 months. But if you choose Without sign you can't upgrade your domain after 12 months.
Registered and signup on Dot.Tk domain free
How to Setup dot.tk free Domain for your Site

  • After doing this process Share on atleast one social media network like Google+ , Twitter , Facebook
  • You have done it! withing 24 four hours or just in 5minuts your domain will be registered on Dot.TK.
Unknown Web Developer

MySelf Muhammad Bilal. I am Graphic Designer and Web Developer and Also Chemichal Engineer. Coding is My Passion Photography is My Ability.

What is Software | Hardware




What is software and Hardware

Software is a set of instructions that tells a computer what to do. A computer works according to the instructions written in the software.
The physical parts of a computer are called Hardware . The  user can see and touch hardware. Keyboard and Mouse are examples of hardware.

Relationship With Software and Hardware

Siftware is a set of instructions that tells the computer hardware what to do. The Hardware cannot perform any task without Software. The software cannot be executed without Hardware. A computer becomes usefull only when hardware and software are combined.

What is Different Between Software and Hardware?

Software Hardware
1   Software is a set of instructions that tells a computer exactly what to do.   Hardware is physical parts of computer that cause processing of data.
2   Software cannot be executed without hardware.   Hardware cannot perform any task without software.
3   Software cannot be touched.   Hardware can be seen and touched.
4   Software is debugged in case of problem.   Hardware is repaired in case of problem.
5   Software is reinstalled if the problem is not solved.   Hardware is replaced if the problem is not solved.

d
Unknown Web Developer

MySelf Muhammad Bilal. I am Graphic Designer and Web Developer and Also Chemichal Engineer. Coding is My Passion Photography is My Ability.

How to Design Professional Blogger Template in Artisteer



How To Create Professional Blogger Template In Artisteer

If you want to customize your template then Blogger has a fantastic Template Editor which allows to help you in customizing your template or theme. Blogger Template Editor helps you to customize fonts, background color , layout design, Body with, Footer width or whatever but you can't change the appearance of template. Sometime we get emails from our site visitors that how to create a custom Blogger template with out learning any web languages like CSS3, HTML5 or Java etc. In this case mostly peoples hire a developer but a person who is new in Blogger world and have a creative mind never pay for buy any kind of template to professional web designer. Now By using Artisteer You can create your own custom template withing few minutes without any Web Language Skills. This tutorial is about that How To Create Professional Blogger Template in Artisteer.

How to Create Blogger Template With Artisteer

How To Install Artisteer?

First step you need to do that open Google page and type Artisteer. After finding this software download into your computer and click on Setup file and install in your PC. Ths software is not a freeware so you need Serial key to use register software. If you are facing a problem due to Serial Key then leave here your comment or purchase this  premium software its your own choice. After install your software click on Artisteer icon from your PC Desktop Screen and open it.
Create Template with Artisteer
How to Design Professional Blogger Template in Artisteer

Design a Template With Artisteer?

Go to desktop screen and open this software from shortcut. After open this software to create a new template Then go to File > New and a New wizard will appeared and asking you to select Content Management System(CMS). This software supports Wordpress,Blogger,Drupal etc. But you trying to make a Blogger template so select Blogger icon. But you can work on other (CMS) like Wordpress,Joomla or Drupal. So we proceed to next step.

Create Template with artisteer
How to Design Professional Blogger Template in Artisteer
Designing Header Now
After this step you will be able to look a simple blog template. By using custom options convert it into professional template. Now you need to make a header area of blogger template so Toolbar hava an option which name is Header just select it and make changes according to your choice.
Design Template with artisteer
How to Design Professional Blogger Template in Artisteer

This tab will give you countless number of option via you can change background, width, position, height, colors and many other options.

Design a Beautifull Sidebar
As you know there are many types of blogger templates i.e one column template, Two Column Blogger Template or Three Column Blogger Template . In One Column Template just one column which contain on post body area. In Two Column Blogger Template one column is post body and second is sidebar which could be at left or right. But in Three Column Blogger Template center column is Post body area and the other two columns are sidebar. Same like Header click on Sidebar tab from Toolbar, toolbar provide you some options i.e sidebar layout, number of sidebars and their appearance.
Create template with artisteer
How to Design Professional Blogger Template in Artisteer
Design A Impressive Post Body
Post body is a main Area except which your blog will remain empty and have no value. A blog need a post body on which you make your article or suggest something new to peoples. For that click on  Article button from toolbar and it will take you on a number of options to customize your post area and make it more attractive stylish and impressive. You can change from this option font size, font color, headings sub headings minor headings and blockquote text style.
Design Menu, Footer Elements
By Click on Menu button you can create drop down menu or simple menu and also you can change the style of menus ,color , width, height ,hover color and much more.
You Can create a decent and stylish Footer. Simply click on Footer button on Toolbar and customize your footer according to your desire.

How to Export Blogger Template with Artisteer

In the end once your template is ready and you want to export it as a XML file so that you could upload on blogger. Ok its very simple Click on Export and then Click Export Template and save the file. NOTE: The dile would be in ZIP Format. After Export Template you need to WinRaR for extarct this file.


This ZIP file contain Two files No#1 is Images in No#2 is Blogger Template XML file which you would upload on blogger blog. I Hope you would enjoy this tutorial.If you have any question in your mind then please leave a comment below.  

Unknown Web Developer

MySelf Muhammad Bilal. I am Graphic Designer and Web Developer and Also Chemichal Engineer. Coding is My Passion Photography is My Ability.

Hex HTML Color Code Generator



Color Code Generator

  • In first step drag the bar on Hue selector on the area of your desired Color.
  • Then Click inside the brightness saturation and move your cursor until you have gained your desired color.
  • The Swatch bar will give you the final color result.
  • Your Hexadecimal color code will generate in the Hex box.
  • Copy your Hex code i.e #ffffff

Color Wheel Generator
  • It is a pretty and more usefull tool to matching colors for menu, backgrounds, hyperlinks etc
  • Copy your sex digit code and past in below wheel Generator's Box except hash ( # ) and after that press Update button.
  • Mached color code appeared in given four boxes at the right side of wheel color generator.
  • Than you copy these hex values and use them.


Unknown Web Developer

MySelf Muhammad Bilal. I am Graphic Designer and Web Developer and Also Chemichal Engineer. Coding is My Passion Photography is My Ability.