Friday, May 2, 2014

This is my first post about HTML. Today I'm going to give you html + css code for a single page. I won’t give you any images. You've to add them in right way. If you can, then you will be able to use this code. Features: * Header banner *  Primary menu *   Slider image *   Secondary menu *   Two sidebars *   Main content area *    Footer HTML Code <html>                 <head>                                ...

Top 10 Chinese Search Engines I used

Search engine submission is so important in SEO (Search Engine Optimization). Generally SEO experts optimize any webpage globally. But sometimes, it need to do locally. Suppose, you’ve a client who is Chinese. He/she wants to optimize his/her page locally. So what will you do? You have to use something effective for Chinese. Now I’m going to give you a list of 10 Chinese search engine. Please read out bellow....

Social bookmarking sites I recently used

Social bookmarking is on of the most important way to increase your webpage rank and visitor. Now a days there are many social bookmarking sites. But there is a problem. If you are a professional, you will find this problem. One day a site was very popular. But it has no exist now. It occurred with many of social bookmarking sites....

Show 5 stars (*****) using C program

Hey. Today I’m going to tell you about something you don’t know. Do you know how to show output 5 stars (*****) using C program? If you don’t know, this post is for you. Here is the code given bellow. Now copy it and use on your C compiler. #include<stdio.h> #include<conio.h> void main() { clrscr(); int i; for(i=0;i<=5;i++) printf("*"); getch(); } If you like this post, Please share it to your friends so they know about it. Keep visiting to get all updates. Thank you. &nbs...

Swapping values using C program

Hello everybody. I'm back after a long time. I was busy with my works and studies. Today I came with some code of C program. Now I'm going to give you the code of Swapping in C program. The code is given bellow. #include<stdio.h> #include<conio.h> void main() { int a,b,t; clrscr(); printf("Enter the value of a:"); scanf("%d",&a); printf("Enter the value of b:"); scanf("%d",&b); t=a; a=b; b=t; printf("After swapping\n a= %d b= %d",a,b); getch(); } Practice yourself. You should know that, Practice makes...