Display any External RSS Feed on Your Site


Have you seen other bloggers who display their other blog’s feed on their site. You want to do it too for extra promotion and traffic. Well here is the tutorial for you. Simply paste the following code in anywhere in your theme:







<?php include_once(ABSPATH.WPINC.'/feed.php');
$rss = fetch_feed('http://feeds.feedburner.com/wpbeginner');
$maxitems = $rss->get_item_quantity(5);
$rss_items = $rss->get_items(0, $maxitems);
?>
<ul>
<?php if ($maxitems == 0) echo '<li>No items.</li>';
else
// Loop through each feed item and display each item as a hyperlink.
foreach ( $rss_items as $item ) : ?>
<li>
<a href='<?php echo $item->get_permalink(); ?>'
title='<?php echo 'Posted '.$item->get_date('j F Y | g:i a'); ?>'>
<?php echo $item->get_title(); ?></a>
</li>
<?php endforeach; ?>
</ul>

Using a Custom Page as a Home Page in WordPress


This is one of the most wanted hacks that users want to know how to accomplish. First you need to learn how to create a custom page. You will need to duplicate your page.php or create a brand new .php file and add the following code at the very top:

  <?php /* Template Name: WPBeginner */ ?>

You can change the template name. Change any styling, that you want in that page. Go to your WordPress admin panel and create a new page and select this template.

And select your page to be the homepage. Now you have yourself a Custom Home Page.

Virus-hit PCs may lose internet access, says McAfee


Virus-hit PCs may lose internet access, says McAfee India has the third-highest number of DNS infections after the United States and Italy. Nearly 3 lakh DNSChanger virus-hit computers, including over 20,000 in India, may lose Internet access from July 9, Web security company McAfee said on Friday. DNSChanger is a malware computer programme that redirects the Internet traffic to fake websites. A McAfee spokesperson said that according to the data provided by DNSChanger Working Group, India has the third-highest number of DNS infections after the United States and Italy. The Federal Bureau of Investigation will shut down servers associated with the DNSChanger malware on July 9. As a result, all computers infected with this threat are likely to be no longer able to access the Internet, the spokesperson said. Last year, the FBI, as a part of ‘Operation Ghost Click’, took control of the servers used by cybercriminals. The FBI then replaced the rogue servers with temporary legitimate servers so as not to disrupt the web activities of those infected. However, these servers were allowed only till July 9, 2012. McAfee has released a free tool to help consumers whose machines have been infected by the DNSChanger trojan. “By providing a free tool that walks them through the process, we are making it easy for consumers to fix their settings and stay connected,” Vincent Weafer, senior vice-president, McAfee Labs, said in a statement. According to the data by DNSChanger Working Group (DCWG), there are nearly 300,000 infected systems globally, with a maximum of over 69,500 such system in the U.S. Italy, with about 26,500 infected systems, is at the second place, followed by India (21,300) and the U.K. (19,589). The DCWG is an independent group of security experts trying to stem out the DNSChanger malware.

More privacy with YouTube Face blur Feature


YouTube recently has added a new feature called Face blur to protect the privacy of the people who are in the video this is gonna add into YouTube late by this Wednesday.
Users before uploading videos to their accounts they can use this feature to video.However this may  not protect the full privacy of the members who are in the video because the background may appear same and the voice of may remain same.
YouTube quoted saying to a news  that “this feature allows people to share personal footage more widely and to speak out when they otherwise may not.”
So now you can add your personal videos and share it to world with out any hesitation.

Nokia Lumia 900 now half price in the US


Nokia has announced that its flagship Lumia 900 phone will now be available for half its original cost in the US with AT&T.
The US network is offering the Windows Phone handset for $49.99 a month on a two-year contract, its having previously been priced at $99.99.
Many are speculating that the reason for this dramatic price slash is because the Nokia Lumia 900 won’t be upgradeable to Microsoft’s new Windows Phone 8 operating system, rolled out later this year.
This was despite Nokia heralding the Lumia 900 as its 2012 flagship device, launching it with a spectacular light show in New York’s Times Square in April.
No word on whether the UK will see a similar price drop for the Lumia 900, which is currently available free from around £31 a month on a two-year contract.
Though the Nokia Lumia 900 won’t be upgradeable to Windows Phone 8 it will enjoy some of the features that come with the update, while Nokia has also introduced several new features and apps in an attempt to pacify Lumia users upset by the Windows Phone 8 snub.

T-shirt that charges your phone


Scientists at the University of South Carolina have found a way to use a cheap T-shirt to store electrical power.It could pave the way for clothes that are able to charge phones and other devices.Experts predict that new technologies including roll-up smartphones and laptops will be on the market soon.These developments would spur on the need for “flexible energy storage”, said theprofessor behind the project.

Xiaodong Li, a professor of mechanical engineering at the university teamed up with post-doctorate researcher Lihong Bao to find a solution.
The pair wrote up their findings for the Advanced Materials journal.
They used a T-shirt bought from a local discount store, which was soaked in a solution of fluoride, dried and then baked in an oxygen-free environment at high temperature.

Hybrid fabric

The fibres in the fabric converted from cellulose to activated carbon during the process, but the material remained flexible.
By using small parts of the fabric as an electrode, the researchers showed that the material could be made to act as a capacitor.
Capacitors store an electrical charge and are components of nearly every electronic device on the market.
By coating the individual fibres of the carbonised fabric with manganese oxide just a nanometre thick, the electrode performance of the fabric was further enhanced.
 “This created a stable, high-performing supercapacitor,” said Prof Li.
The hybrid supercapacitors proved resilient – even after thousands of charge-discharge cycles their performance did not diminish more than 5%, the researchers said.
“By stacking these supercapacitors up, we should be able to charge portable electronic devices such as cell phones,” Prof Li added.
“We wear fabric every day. One day our cotton T-shirts could have more functions; for example, a flexible energy storage device that could charge your cell phone or your iPad.”

Download New Angry Birds Space for windows Xp or 7 Desktop


The game Angry birds for Iphone and Android but now its the time to get this game for Desktop users.

Every one know that this is one of the  popular and most rated games on the internet.Angry released a new version Called “Angry Birds Space” this interesting game with new features like Zero-gravity etc made this game a wonderful experience.
So they planned to release this for Pc users.This game is available for Windows Xp and windows 7 veresions of microsoft windows operating systems.

Requirements:
Operating system: Windows Xp or Windows 7

Features:

  • 60 level gameplay with space environment
  • New birds with new powers
  • HD graphics

Clik here to download this Angry birds space for windows Xp/7

Unzip a Zip File in php


<!--?php

    function unzip($location,$newLocation){
        if(exec("unzip $location",$arr)){
            mkdir($newLocation);
            for($i = 1;$icount($arr);$i++){
                $file = trim(preg_replace("~inflating: ~","",$arr[$i]));
                copy($location.'/'.$file,$newLocation.'/'.$file);
                unlink($location.'/'.$file);
            }
            return TRUE;
        }else{
            return FALSE;
        }
    }
?>
//Use the code as following:
<!--?php
include 'functions.php';
if(unzip('zipedfiles/selvabalaji.zip','unziped/myNewZip'))
    echo 'Success!';
else
    echo 'Error';
?>

Google drive for WordPress Backup


The plugin used to Make backups of your WordPress files and Mysql DB with Google Drive. Google Drive for WordPress is a plugin that provides backup capabilities for WordPress. Backups are ‘zip’ archives created locally and uploaded to a folder of your choosing on Google Drive.

You can find the plugin here.
http://wordpress.org/extend/plugins/wp-google-drive/

Create a folder without name in Windows XP


This is not a super high-tech geeky trick but it just a short and simple trick on how you can create a folder without name in Windows XP.

When each time you create a new folder in Windows XP, Microsoft has made “New Folder” as the default name. Even you enter the spacebar so many times to create blank spaces, it still will generate the “New Folder” text like this.

newfolder-01.gif

So, how you can create a folder like this?

So, how you can create a folder like this?

newfolder-02.gif

No, it is not a Photoshop trick. I did not edit the first image. Lol… Here is how.

To do this trick, you need a keyboard with numpad. To rename the folder with blank spaces, just press Alt + 255 and hit Enter. Then you are successfully creating a folder without name in Windows XP.

But, make sure to press the numbers from the numpad and not from the numbers below the F1 – F12 keys. And take note that you only can create one folder without name in a directory.

Why should I use this trick? Nothing! Just for fun or maybe you can use it to amaze your friends.

Note: I think this trick also will work in Windows Vista.

Top 10 free PC programs everyone should have


There are millions of free and open source projects available, many of them better than any commercially available product. Below is a short listing of what we think is the best out there, broken down into ten categories.

antivirus and malware protection

Most PC users realize that they need protection on their computer or may have an installed antivirus program from their computer manufacturer. What most don’t realize is that there are free programs that are just as good and in some cases better than the commercial products. Below are our recommendations

antivirus program: Avast! or AVG

Malware and Spyware protection: Malwarebytes

Backup solutions

There are dozens of free and commercially available backup programs for computers. Unfortunately many of those backups are stored locally, meaning if your house were to catch fire, get robbed, or if you lost your backup discs all your data would be lost. This is why when dealing with important data we suggest users use online backup services.

Online backup solution: Mozy or Dropbox

Browsers

Although Microsoft Internet Explorer comes pre-installed on Windows computers. There are several excellent free alternatives that everyone should try. These free alternatives can often be faster, have more options, and in many cases be more secure than Internet Explorer.

Internet Browser: Mozilla Firefox or Google Chrome

Compression utility

When downloading files on the Internet you’ll eventually encounter a .zip, .rar, or other compressed file. Dealing with these files can be easy with our below free file compression utility.

File compression utility: 7-Zip

Disc ripper and creation utility

Creating an audio or data CD/DVD, ripping the data from an audio CD, or creating a CD from a .ISO file can also be done freely using our below free recommendation.

CD burner utility: CDBurnerXP

E-mail

E-mail is yet another service that can be done freely. Most users today use online e-mail solutions like the one listed below. However, for those still using an e-mail client such as Microsoft Outlook we strongly suggest one or both of the below suggestions.

E-mail client: Mozilla Thunderbird

Online e-mail: Gmail

FTP, SFTP, and SSH Utility

Users who maintain their own web page or need to upload or download files to or from a server will have to use an FTP utility or a SSH client. There are many commercial programs capable of doing this but our below free recommendations beats them all.

FTP client: Filezilla

SSH client: Putty

Image editor, paint program, and picture organizer

There are many great free solutions for editing, creating, and organizing your images on your computer. Many of the programs capable of doing these tasks can be several hundred dollars, but all of the below programs are completely free.

Image editor: GIMP

Paint program: Paint.net

Picture organizer: Google Picasa

Multimedia

There are dozens of different multimedia programs with different capabilities and limitations. Below are our top free multimedia programs for watching video files and recording audio.

Audio editing and creating tool: Audacity

Video and DVD Player: VLC

Office Suite

An Office suite such as Microsoft Office is often one of the most expensive programs that a user can install on their computer. Why install these expensive programs when there are free solutions that are just as good.

Office suite: OpenOffice

Notepad and Source code editor: Notepad++

Top Ten Tips To Improve System Speed


1. Let your PC boot up completely before opening any applications.

2. Refresh the desktop after closing any application. This will remove any unused files from the RAM.

3. Do not set very large file size images as your wallpaper. Do not keep a wallpaper at all if your PC is low on RAM (less than 64 MB).

4. Do not clutter your Desktop with a lot of shortcuts. Each shortcut on the desktop uses up to 500 bytes of RAM

5. Empty the recycle bin regularly. The files are not really deleted from your hard drive until you empty the recycle bin.

6. Delete the temporary internet files regularly.

7. Defragment your hard drive once every two months. This will free up a lot of space on your hard drive and rearrange the files so that your applications run faster.

8. Always make two partitions in your hard drive. Install all large Softwares (like PSP, Photoshop, 3DS Max etc) in the second partition. Windows uses all the available empty space in C drive as virtual memory when your Computer RAM is full. Keep the C Drive as empty as possible.

9. When installing new Softwares disable the option of having a tray icon. The tray icons use up available RAM, and also slow down the booting of your PC. Also disable the option of starting the application automatically when the PC boots. You can disable these options later on also from the Tools or preferences menu in your application.

10. Protect your PC from dust. Dust causes the CPU cooling fan to jam and slow down thereby gradually heating your CPU and affecting the processing speed. Use compressed air to blow out any dust from the CPU. Never use vacuum.

RAM IS THE WORKING AREA (DESKTOP) OF THE CPU, KEEP IT AS EMPTY AND UNCLUTTERED AS POSSIBLE!

Hidden Programs in windows Xp.


Hidden Programs in windows Xp. Type the following commands in RUN.

Programs :


1. Private Character Editor :
Used for editing fonts,etc.
** start>>Run
** Now, type eudcedit


2. Dr. Watson :
This an inbuilt windows repairing software !
** start>>Run
** Now, type drwtsn32

3. Media Player 5.1 :
Even if you upgrade your Media Player, you can still access your old player in case the new one fails !!!
** start>>Run
** Now, type mplay32

4. iExpress :
Used to create SetupsYou can create your own installers !
** start>>Run
** Now, type iexpress

Trick to Show Your name after time in taskbar…

Try this  trick to add up ur name in place of AM and PM beside time
Its simple
Step-1:- Navigate to -> Start -> Control Pannel -> Regional and Language Option -> Click on Customize -> Go to TIME Tab -> Change AM symbol and PM symbol from AM and PM to ur name -> Apply -> Ok …
Did It change? If not, follow step-2 below.

Step2:- Now go to time in taskbar and Double Click it to open “Date and time property” …Look place where time changes in digital form i.e. 02:47:52 AM , click to arrow to cnage the AM or PM by selecting and press arrow. It will Show ur name or name that was entered by u, Apply -> OK and be HAPPY 8)

Offline Gmail to browse gmail from computer by downloading the whole gmail


Gmail as we all know a short form for Google Mail is one of the products of Google INC. In the race of email clients Gmail is coming up with more and more abilities which has attracted millions of users from other mail accounts like yahoo, msn. They have introduced much extra features through lab features which are presently in testing stage but users can still use it .You can view and enable them from the tab which appears in right most corner of the gmail.

The latest lab feature is the ‘offline gmail’ – to access gmail from computer,which ultimately gives the power to download all or selected gmail mails or messages to your pc for the offline use. Offline Gmail is still an early experimental feature

How to enable Offline Gmail

Offline Gmail is available to everyone who uses Gmail in US or UK English, so if you don’t see it under the Labs tab yet, it should be there soon. Once you see it, just follow these steps to get started:

1. Click Settings and click the Labs tab.
2. Select Enable next to Offline Gmail.
3. Click Save Changes.
4. After your browser reloads, you’ll see a new “Offline0.1″ link in the upper righthand corner of your account, next to your username. Click this link to start the offline set up process and download Gears if you don’t already have it.

When you hit save, Gmail will synchronize new messages you didn’t have downloaded before and remove the ones you’re not planning to read from your hard drive. You can always change your settings back to keep fewer or moremessages later on — fewer messages means Offline Gmail runs faster

New Features of Gmail Offline

The feature that Google implemented through Gmail Labs, Gmail offline, just received new functionality. That is, even when offline you can write an email and attach any file that when you have Internet access, the email will be sent automatically. It manages to offer a little more versatility in equipment such as netbooks or laptops.

The good thing about this is that being able to read messages while offline, and now write to attach a file, compared with a desktop mail client virtually no difference.
The new functionality to attach files offline has been integrated transparently to users, so if you had “Offline” live in GMail Labs, enjoy it directly and by activating the service, too.

To activate the new functionality, simply visit the Google Labs tab, select the Offline Gmail option, provided they had not previously checked, and save your changes. . Then in the top right corner of the Gmail page you will see a link “Offline”, that we will be able to click to start using the application.
A blow to popular applications like Microsoft Outlook, Thunderbird or Windows Live Mail

Speed up your internet by 20%


 Microsoft reserves 20% of your available bandwidth for their own purposes like Windows Updates and interrogating your PC etc

You can get it back:

Click Start then Run and type “gpedit.msc” without quotes. This opens the group policy editor.

Then go to:
–> Local Computer Policy
–> Computer Configuration
–> Administrative Templates

–> Network

–> QOS Packet Scheduler

–> Limit Reservable Bandwidth.

Double click on Limit Reservable bandwidth.

 It will say it is not configured, but the truth is under the ‘Explain’ tab i.e.” By default, the Packet Scheduler limits the system to 20 percent of the bandwidth of a connection, but you can use this setting to override the default.”
So the trick is to ENABLE reservable bandwidth, then set it to ZERO. This will allow the system to reserve nothing, rather than the default 20%.It works on Win 2000 as well.  

Customize & Brand the WordPress Admin Dashboard & Login


You may wish to customise the WordPress admin dashboard for many reasons such as for clients to match their web site, if you are providing WordPress as a service (SAAS), to hide the fact the site is running on WordPress or maybe just because you like hacking interfaces. In this article we will discuss methods and plugins that will help you customize and brand the login area, the admin area itself and the admin bar.

By default, the login page to your admin area has the WordPress logo above the login form. But you can very easily change that to any image of your choice. This is perfect for branding your login page, particularly if you’re providing a site for a client, or you have a multi-author blog.

It really doesn’t require much at all. Simply paste this following function into your functions.php file (in wp-content/themes/yourthemefolder/) and change the filename to the filename of your logo. Just be sure to upload the logo file to the images directory of your current theme (or alternatively, change the complete URL in the function below):

// Custom Login Logo //

function diww_custom_login_logo() {
echo ‘<
h1 a { background-image:url(‘.get_bloginfo(‘template_directory’).’/images/diww-login-logo.png)

!important;

}

>’;
}

add_action(‘login_head’, ‘diww_custom_login_logo’);

Now when you go to your login page, you should see the WordPress logo replaced by
 your own logo


Customizing the Login Page

My Brand Login

My Brand Login is a WordPress Plugin that lets you create a custom Log in, Register and Lost Password Page with ease. You don’t need to know any code. Features :

  • Add Image/Color Backgrounds.
  • Add Login Form Background Image/Color.
  • Change the Login Font Color.
  • Replace the WordPress Logo on the Login + Admin/User Pannel
  • Redirects the Login Logo to Your Websites URL
  • Uses jQuery Fade Features (custom) For a Unique Touch.

My Brand Login »

WP Login

The WP Login allows a user to create a custom login page or insert the default login form into the currently activated theme. It includes the ability to upload a custom logo, change the colors, disable elements, and it contains a theme editor specifically for the login form. This theme editor gives maximum control over the login form while still maintaining the default WordPress functionality such as login validation.

WP Login »

Uber Login Logo

Uber Login Logo is a simple plugin I made so that I could customise the login screen on my own website by utilising in-built WordPress functions and the WordPress media uploader. Considering all the bloated plugins and resource intensive implementations floating around, I thought this lightweight codebase and clean UI could be of similar benefit to other WordPress users/developers. Don’t expect too many fancy bells and whistles, this plugin does one thing, and does it well.

My Brand Login »

Custom Login Logo Lite

This plugin is intended to allow you to change your login logo easily. You just need to upload it to any place and tell the system where it is. It differs from other plugins in its options and weight. It is intended to be lite and only change the logo.

Custom Login Logo Lite »

Login Logo

This plugin allows you to customize the logo on the WordPress login screen. There is zero configuration. You just drop the logo file into your WordPress content directory, named login-logo.png and this plugin takes over.

Login Logo »

Memphis WordPress Custom Login

A simple way to control your WordPress Login Page. After installation goto the ‘Tools’ menu on the dashboard to customize your Login Page. You have the ability to change the look and feel of your WordPress blog, giving the login screen more of a personal touch. Features include:

  • Google Analytics Support for all page of your site including or not including login, admin and pages
  • Password Protected Blog
  • Custom Redirect after login
  • Full customizable Login Screen, with the ability to
  • Add Custom Logo
  • Change Background Colour
  • Change Text color
  • Change Link colours
  • Change Form Form background color, border color, border radius, shadow and more….
  • Hide Messaging
  • Hide back to blog link
  • hide register link/ forgot password link

Memphis WordPress Custom Login »

BuddyPress Sliding Login Panel

BuddyPress Sliding Login Panel delivers a fancy, smooth AJAX login experience for BuddyPress users. It also includes an account center with a full user menu.

BuddyPress Sliding Login Panel »

Customizing the Admin Area

Creating Admin Themes

WordPress’ flexible nature allows for almost every part of it to be easily changed. Creating a custom WordPress Admin Panel Theme is no different. There are essentially two ways of making a WordPress Admin theme: with a Plugin or by simply changing the CSS. The Plugin method is the easier of the two methods, allowing you to install WordPress Admin Themes quickly and easily. You literally “plug it in” and it works.

Creating Admin Themes »

AG Custom Admin

With this plugin you can hide or change unwanted items in admin and login pages (like admin bar or footer text, remove Screen options, Help options or Favorites dropdown menu etc). You can also completely change or hide buttons from admin menu, or add new customized buttons. With Colorizer you can completely customize background and text colors in admin and login page.

AG Custom Admin »

Custom Admin Branding

The Custom Admin Branding Plugin allows you to brand and customize the WordPress administration area for clients or for personal use. You can display custom images and styles for the login screen, admin header and footer.

Custom Admin Branding »

Easy Admin Color Schemes

The Easy Admin Color Schemes plugin allows users to easily customize the colors of the administration interface for WordPress. It works by adding a new interface to the WordPress admin that allows you to add, edit, import, and export custom admin color schemes. Without the plugin you would need to know how to create your own WordPress plugins or customize WordPress code in order to add your own custom admin color schemes.

Easy Admin Color Schemes »

Fluency Admin

Fluency Admin give the WordPress admin interface a boost, with a new style and some cool features. Features:

  • Stylish dark-on-light colours
  • Hover activated sub-menus
  • Custom colour schemes
  • Customise WordPress with your logo
  • Access menus using ‘hot keys’

Fluency Admin »

Custom Dashboard Widget

This is a simple WordPress plugin that I wrote which will enable you to add a widget to your admin dashboard and display any custom HTML content you provide it. I like to put my phpMyAdmin and Webmail links here for easy access. The plugin is designed to be extremely simple to use.

My Brand Login »

Admin Customization

Admin Customization allows you to change the appearance of your WordPress backend. The plugin allows you to:

  • change the backend favicon.
  • change the backend logo.
  • hide the admin logo text and / or logo image.
  • change the logo text font size.
  • change the login page logo with a logo of any width.
  • change the admin footer text.
  • disable dashboard widgets.
  • hide update notices and plugin update count.
  • turn on redirection to homepage on administration panels logout.

Admin Customization  »

Custom Welcome Messages

This plugin will allow you to add a custom welcome message to your login/register screens. It will also allow you to add a separate custom message for your logout screen. The admin page allows you to add HTML code into the message boxes, so you can include images, links, videos, or any other HTML code.

Custom Welcome Messages »

Customizing the Admin Bar

WP Custom Admin Bar

A really simple and easy to use plugin to help gain control of the new Admin Bar. This gives you options to change who sees the Admin Bar based on their user role, change or override the default styling or remove the Admin Bar altogether. It adds a menu to the Admin Bar which gives you the ability to disable it on a single page or sitewide for a single browser session.

WP Custom Admin Bar »

Custom Admin Bar

Easily add your own link or logo to the WordPress Admin Bar. Then highlight important links for your users through a simple drop-down menu. The drag-and-drop ordering makes it easy to create a unique list of important links for your site.

Custom Admin Bar »

Types of Search Engines


Search engines are an extremely powerful way of promoting your website online. Consider them your silent Public Relations firm, quietly working in the background. Many studies have shown that between 40% and 80% of users found what they were looking for by using the search engine feature of the Internet.

According to Search Engine Watch (http://www.searchenginewatch.com) – 625 million searches are performed every day!

The great thing about search engines is they bring targeted traffic to your website. These people are already motivated to make a purchase from you- because they searched you out.

With the right website optimisation, the search engines can always deliver your site to your audiences.

General

P2P search engines

Metasearch engines

Geographically limited scope

Accountancy

Business

Enterprise

Food/Recipes

Mobile/Handheld

Job

Main article: Job search engine

Legal

Medical

News

People

Real estate / property

Television

Video Games

By information type

Search engines dedicated to a specific kind of information

Forum

Blog

Multimedia

Source code

BitTorrent

These search engines work across the BitTorrent protocol.

Email

Maps

Price

Question and answer

Human answers

Automatic answers

Natural language

By model

Privacy search engines

Open source search engines

Semantic browsing engines

Social search engines

Visual search engines

Types of Web Browsers


Web Browsers are software installed on your PC. To access the Web you need a web browsers, such as Netscape Navigator, Microsoft Internet Explorer or Mozilla Firefox.

Currently you must be using any sort of Web browser while you are navigating through my site tutorialspoint.com. On the Web, when you navigate through pages of information this is commonly known as web browsing or web surfing.

The most popular are: 

Internet Explorer  browsers
Google Chrome 
Firefox 
Safari 
Opera.

However, there are literally dozens of browsers that have existed since the “birth” of the internet. Not including mobile browsers (such as browsers found on some of the earlier cell phones), the list of major browsers that have existed are as follows:
WorldWideWeb 
ViolaWWW 
Erwise 
MidasWWW 
MacWWW 
Mosiac 
Cello 
Lynx 
Arena 
AMosiac 
IBM WebExplorer 
Netscape Navigator 
SlipKnot 
MacWeb 
iBrowse 
Argo 
Minuet 
Internet Explorer 
OmniWeb 
UdiWWW 
WebRouser 
Grail 
Arachne 
Opera 
PowerBrowser 
Cyberdog 
Amaya 
AWeb 
Voyager 
iCab 
Mozilla 
Konqueror 
K-Meleon 
Galeon 
Phoenix 
Links 
Safari 
Epiphany 
Firefox 
AOL Explorer 
Maxthon 
Shiira 
SeaMonkey 
Camino 
Avant 
Sputnik 
Netsurf 
Flock 
Chrome 

These are in roughly chronological order, as presented by Wikipedia Other browsers have existed, but due to their low popularity were not included on this list. Low popularity, of course, is relative to the time era; WorldWideWeb never had as many users as Chrome does today, but was used by the majority of the Internet users in the world at the time it came out (as it was the first real web browser). In the real world, only a few browsers are considered serious contenders of the “market”, as the rest are either obsolete, only fill a niche market, or have not yet gained popularity; the latter usually comes about because people are hesitant to “try” a new browser since their current browser has served their purpose for a significant length of time
a web browser is a software application that renders code written in HTML and Javascript that is located on a webserver.
some examples of web browsers are chrome, firefox, sparkbrowser, netscape, and internet explorer.
There are three major browsers in the PC world. The most famous is Internet Explorer (IE) which is a Microsoft creation, and is bundled with the Windows operating system. Internet explorer has been prone to numerous security bugs and is considered the least secure out of all three major browsers. The second major browser is Firefox, which is amongst the most secure, and is the most easiest to use in my opinion. The third is Chrome which is a recent browser Google has released. It to is easy to use and secure for the most part.

In terms of the MAc platform the only major broswer is Safari, which is a Apple creation, and is bundled with the OS platform.