Welcome to Technology hub.

it's all about the new technogy, about the programming languages fundamentals and solutions. Here You can find Easy methods and solutions about Programming and coding...Enjoyyy...

Popular Posts

Get widget

Thursday 15 August 2013

Create Image Circles using CSS

I recently started learning the basics of CSS3 features that you can use to create animations.
One of the simple CSS3 technique that many websites use on their comment section and headder section is to display the user’s photo and images in a circle.

To create an image cricle in CSS you have to change the border radius property
Take a sample image and create a CSS class for it. it's very simple...

  • HTML

1:  ------HTML-------------------------  
2:  <div class="circle">  
3:       <img src="viren.jpg"/>  
4:  </div>  
5:  -------CSS-----------------------  
6:  .circle img{  
7:    height:300px;  
8:    width:300px;  
9:    border-radius:250px;  
10:  }  

Give border shadow to image circle..

1:  ------HTML-------------------------  
2:  <div class="circle">  
3:       <img src="viren.jpg"/>  
4:  </div>  
5:  -------CSS-----------------------  
6:  .circle img{  
7:    height:300px;  
8:    width:300px;  
9:    border-radius:250px;  
10:    box-shadow: 0 0 18px blue;  
11:  }  

Change Effect on mouse hover :

1:  ------HTML-------------------------  
2:  <div class="circle">  
3:       <img src="viren.jpg"/>  
4:  </div>  
5:  -------CSS-----------------------  
6:  .circle img{  
7:    height:300px;  
8:    width:300px;  
9:    border-radius:250px;  
10:    box-shadow: 0 0 18px blue;  
11:  }  
12:  .circle img:hover {  
13:    border-radius:0px;  
14:    -webkit-transition: all 0.3s ease-out;  
15:  }  

Result :



Monday 29 April 2013

Keyword Tools for SEO


You could spend half your life and most of your budget trying to figure out which keywords will work best for your site, for your content, and for your search engine rankings. if you know the correct keyword your website is at the first position in Google page. For that Tools, like the ones listed here, will make optimizing those keywords at least a little easier. 

Above are keyword tools for help to create your site's keyword. I hope it's help full to you, thanks a lot. 

Reference And Resource

**-- Reference And Resource -------------**

PHP

  • PHP Official Website: - A complete resource for PHP stuff. Starting from latest PHP updates to latest function manual is available at this site.
  • PEAR - PHP Extension and Application Repository, find a list of various useful PHP packages.
  • MySQL Homepage - Here you can download the latest MySQL release, get the MySQL news update. The mailing list is also a great resources for anyone who want to build dynamic websites using MySQL.
  • PHPBuilder - Great articles and tutorials in PHP programming. Anyone from a beginner to an expert can really learn from this site.
  • PHP at Wikipedia - A small article on PHP, worth to go through it.
  • phpBB - Create your website forum using phpBB. Very easy to customize and its open source, so you can download it free of cost and use it.
  • Joomla! - Joomla! is one of the most powerful Open Source Content Management Systems on the planet. It is used all over the world for everything from simple websites to complex corporate applications. Joomla! is easy to install, simple to manage, and reliable.
  • Zend - Zend Technologies is the leading provider of products and services for developing, deploying and managing business-critical PHP applications. Here you can get the Zend Optimizer. It's a very useful tool which can give your PHP scripts a 40-100% increase in speed.
  • PHP Editors - A PHP Editor is a computer program which is used to write PHP Scripts. Some people use widely available tools like notepad on windows or VI on unix. But if you want some extra features like code highlighting, code insight, project management, code browser, code debugging etc, then a PHP IDE (Integrated Development Environment) is more suited. There are hundreds available, some can be pretty expensive while some totally free.
WebService
  • Oficial website for web service .. Provides 6,000,000+ web services transactions every day
  • WebserviceX

Network
  • Online free Network tools lookup: Domains, IP, Email Tracing, Ping, DNS...

ASP.NET
JavaScipt
JQuery
Designing
Templates

Saturday 30 March 2013

CORE JAVA INTERVIEW QUESTIONS

There is the list of 170 core java interview questions. If there is any core java interview question that have been asked to you, kindly post it in the ask question section. We assure that you will get here the 90% frequently asked interview questions and answers. The answers of the core java interview questions are short and to the point. The core java interview questions are categorized in Basics of java interview questions, OOPs interview questions, String Handling interview questions, Multithreading interview questions, collection interview questions, JDBC interview questions etc.

Sunday 10 March 2013

The doctype declaration in HTML5

Take a look at this page's "Source Code". The source code is the HTML that generates a page.
On a PC in Chrome or FireFox right click anywhere on the page (except the ads) and select "View page source", or even easier just click "Ctrl-U". In IE "Ctrl-U" doesn't work; you have to right click the page and select "View Source". Select it all, copy it and paste it into Notepad or some text editor. If you have any problems or are in a different browser search "source code" in help.
At the very top of the page you will see the doctype declaration:

<!DOCTYPE html> *

Like any language, HTML5 has a grammar and a vocabulary.
Grammar
<!DOCTYPE html> goes at the top of every HTML5 page.
Vocabulary
The HTML5 word <!DOCTYPE html> means "this page is written in HTML5" as opposed to, say HTML 4.01.
Why, you ask, don't they just write <HTML5> or even a zesty <!HTML5>? I have absolutely no idea. Still it's better than what they had before. Here's an example of one common type of XHTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Hopefully the doctype declaration in HTML5 won't turn into the crazy mess it did with XHTML and previous versions of HTML. Those in charge of such things say it won't, but time will tell.
So now you learned three things:
  1. How to view the source code of a page, an important tool.
  2. You know one word in HTML5<!DOCTYPE html> = "HTML5"
  3. and one grammar rule: <!DOCTYPE html> goes at the top of every page.

What is HTML5 ?

HTML5 is not just the future of web design, it's the present.

Everything that makes the web sing.

HMTL5 is not a single thing or a monolithic technology. It is a collection of features, technologies, and APIs that brings the power of the desktop and the vibrancy of multimedia experience to the web—while amplifying the web’s core strengths of interactivity and connectivity.
HTML5 includes the fifth revision of the HTML markup language, CSS3, and a series of JavaScript APIs. Together, these technologies enable you to create complex applications that previously could be created only for desktop platforms.

The first web browser, Mosaic, was introduced in 1993. A year later Netscape, based on Mosaic, was introduced and the net began to become popular. HTMLwas used in both browsers, but there was no "standard" HTML until the introduction of HTML 2.0.
HTML 2.0 was first published in 1995.* HTML 3.0 was published two years later and 4.01 two years after that. HTML 4.01 has been the work horse of the net ever since.
The first "working draft" of HTML5 came out in January of 2008 and it already has surprisingly broad browser support. However HTML5 is not yet fully implemented and won't be for some years yet. There are any number of planning committees that have plans to make it a "Recommendation", but such plans are still in the planning phase – and don't plan on that changing anytime soon. **

Fundamental changes are coming with the development of APIs that will run in HTML5 – exciting and powerful new tools that will take the internet places we can't begin to imagine. Also new elements such as the <header>,<nav> and <article> have been introduced which will help search engines analyze web pages better.

The internet will absorb television the way it has telephone technology. Now if you want to add video to your page you either have to add a complicated script to your page, embed a YouTube video or have to open it in a separate application such as Windows Media Player. The former is not easy and the latter two lack professional polish. HTML5's new <video> tag will solve that problem.

Reference:

Saturday 9 March 2013

Importance of meta tags in SEO


Meta tags are tags, which are embedded in the HTML code of a page, You should insert the META tag element at the top of your document, just after the <TITLE> element.
The basic syntax for Meta Tags is:
<HEAD>
<TITLE>Your Page Title Goes Here</TITLE>

<META name=”description” content=”type your description here”>

<META name=”keywords” content=”type, your, keywords, keyword phrase here”>
</HEAD>

Tips On META Description Tag

<META name="Description" content="Your descriptive sentence goes here.">
  1. Write it in sentence structure.
  2. Should be relevant to the similar 25-30 word (under 150 characters) description of the first text within the visible page.
  3. Do not repeat your keywords more than 3 times in description tag. If you need, make alternatives (e.g. 'prescription' and 'prescriptions' can be used 3 times each).
  4. Minimize the use of "stop words" such as "and, the, of".
  5. Keyword phrases that appear earliest in the Meta description will generally receive higher ranking value.
  6. Try to include this tag in all pages by describing the content and it should be unique.
  7. Don't load your Meta description with only keywords.
  8. Strive for 6%-20% keyword density.
  9. Use different Meta description tag for each pages.

Tips On META Keyword Tag

<META name="keywords" content="your keywords, go here, separated by a comma">
  1. Keep 100 to 250 characters to get better results.
  2. Start with the most important and then proceed to less important.
  3. Use keywords/Phrases
  4. Do not repeat any word more than 3 times.
  5. Do not place repeated keywords close together.
  6. If your site has content of interest to a specific geographic location be sure to include the actual location in your keyword Meta.
  7. Use keywords that are actually on the page and reflect the essence of your content.
  8. Try to use keywords in your Meta keywords tag with comma, not by space.
  9. Try to use small case in keyword/phrases

    (eg: replace the keyword phrase - "Website Design" with "website design")
  10. Strive for 4%-10% keyword density.

Create Your Meta Tags

Google Webmaster Tools helps to increase your site's traffic


Major search engines, including Google, provide free tools for webmasters. Google's Webmaster Tools help webmasters better control how Google interacts with their websites and get useful information from Google about their site. Using Webmaster Tools won't help your site get preferential treatment; however, it can help you identify issues that, if addressed, can help your site perform better in search results. With the service, webmasters can:
Yahoo! (Yahoo! Site Explorer) and Microsoft (Live Search Webmaster Tools) also offer free tools for webmasters.

Helpful resources for webmasters


Below are the helpful resource for google webmaster tools.
Friends above links helps to learn google webmaster tools. If you know more links then share with us in comment.
Tags: Google webmaster,Google Webmaster Toolkit,Guidline to use Google webmaster Toolkit,Increase your rank using google webmaster toolkit

Take advantage of web analytics services



If you've improved the crawling and indexing of your site using Google Webmasters Tools or other services, you're probably curious about the traffic coming to your site. Web analytics programs like Google Analytics are a valuable source of insight for this. You can use these to:
  • get insight into how users reach and behave on your site
  • discover the most popular content on your site
  • measure the impact of optimizations you make to your site (e.g. did changing those title and description meta tags improve traffic from search engines?)
  • create new reports and analysis on it
For advanced users, the information an analytics package provides, combined with data from your server log files, can provide even more comprehensive information about how visitors are interacting with your documents (such as additional keywords that searchers might use to find your site).
Lastly, Google offers another tool called Google Website Optimizer that allows you to run experiments to find what on-page changes will produce the best conversion rates with visitors. This, in combination with Google Analytics and Google Webmaster Tools.

see our other articles related to google website tools.

SEO Keyword Tools


You could spend half your life and most of your budget trying to figure out which keywords will work best for your site, for your content, and for your search engine rankings. Tools, like the ones listed here, will make optimizing those keywords at least a little easier. 
Above are keyword tools for help to create your site's keyword. I hope it's help you and you know any free and new keyword tools then share with us in comments,thanks. 

Best Javascript Framework List

Javascript Framework List | Top Javascript Framework List | Best Javascript Framework List

Google Web Fonts

Google Fonts is an absolutely ultimate collection of web fonts that you may use in your HTML web pages without any restrictions and download it in your computer or laptop. 

Google Web Fonts makes web fonts quick and easy to use for everyone, including professional designers and developers. We believe that there should not be any barriers to making great websites.

Google Web Fonts team's goals are to create a directory of core web fonts for the world and to provide an API service so that anyone can bring quality typography to their webpages.
The API service runs on Google's servers. They are fast, reliable and tested. Google provide the service free of charge. It is possible to add Google Web Fonts to a website in seconds.

A web built with web fonts is a web that is more beautiful, more readable, more accessible and more open.




Google Web Fonts
http://www.google.com/webfonts

Contribute to Google Web Fonts
https://services.google.com/fb/forms/submitafont/

Google Web Fonts API
http://code.google.com/apis/webfonts/docs/getting_started.html

Popular Web Hosting Companies


In the world there are many best hosting provider companies.Below are the most popular web hosting companies.

Popular Web Hostings

Host Gator

Since its establishment in 2002, HostGator has been a world-leading provider of web hostingservice. Although our headquarters is in Houston, Texas, we provide top-notch service to clients from over 200 countries internationally with our staff of over 750 employees. We offer Shared, Reseller, VPS, and Dedicated server packages for both beginners and professionals alike. Each of our shared Web Hosting plans includes 24/7/365 support, a 99.9% uptime guarantee, and a 45-day money-back guarantee.

Click Here to Go Host Gator

Just Host

Just Host is dedicated to providing their customers with the most reliable web hosting service possible.Fast, reliable, web hosting at an affordable price with secure servers, and 24/7 technical support make hosting your website with Just Host the obvious choice.

Click Here to Go Just Host

Host Monster

HostMonster has been providing hosting solutions to thousands of business and personal web sites since 1996. Our internet hosting package helps businesses and individuals get high-powered service at a fraction of the cost.

Click Here to Go Host Monster

iPage

iPage has been hosting business, personal, social and non-profit websites for more than 10 years. iPage offers a great deal of flexibility, without overcomplicating things,Security for You and Your Visitors.

Click Here to Go iPage

Blue Host

Bluehost has been providing quality web hosting solutions to businesses and individuals since 1996. Bluehost's goal is to provide outstanding services for the best possible price.Bluehost are constantly innovating and upgrading their services at no additional cost to their customers.

Click Here to Go Blue Host

Fat Cow

Since 1998 the FatCow Web Hosting plan has provided reliable hosting services for individuals and businesses.

Click Here to Go Fat Cow

ix WebHosting

In 1999 ix WebHosting began supporting their first hosting customers on a server in someone's living room, and since then ix WebHosting has grown into a company with over 110,000 clients hosting over 470,000 sites.

Click Here to Go ix WebHosting

Webhostingpad

Webhostingpad.com was formed in 2005 with a team of very successful and proven industry veterans intent on delivering the best value in web hosting. With the growing need for affordable hosting, the company set out to deliver the best web hosting at a price where everyone can afford to have their piece of the world wide web.

Click Here to Go Webhostingpad

Myhosting

With myhosting.com Web Hosting you’ll get everything you need to get your own Personal Website, Business Hosting or eCommerce Hosting solution up and running quickly and easily. Myhosting's Windows Hosting and Linux Hosting solutions come with everything you could ever need to launch a successful website. This includes many hosting features, including a full featured Site Builder tool that will allow you to create and publish your site based on a variety of website templates, and a web application installer tool providing many popular blog, CMS or eCommerce hosting solutions, including WordPress Hosting, Joomla Hosting, Magento Hosting, and many more.

Click Here to Go Myhosting

Hosting.com.ru

Hosting.com.ru offers ONE CLICK and FREE INSTALLATION of the following PHP scripts and applications. You can install them all yourself with just one mouse click or request a free install upon ordering a hosting plan. So that, you get a totally free setup and hosting for your b2evolution blog or SMF forums, php-Fusion, Mambo or Joomla hosting, Geeklog, Gallery2, osCommerce, etc.

Click Here to Go Hosting.com.ru

GoDaddy

Go Daddy offers everything you need to make a name for yourself on the Web, from domain names and website builders to complete eCommerce solutions. We've earned our place as the world's #1 ICANN-accredited domain registrar by delivering world-class products at competitive prices and supporting them with industry-best service, delivered 24/7/365. We're proud to serve our customers from locations around the world, including Arizona, Iowa, Colorado, Washington D.C., Singapore and The Netherlands.Go Daddy is the largest hosting provider of secure websites in the world.

Click Here to Go GoDaddy

Bigrock

Bigrock's platform powers over 100,000 websites worldwide, making us one of the most reliable hosting providers globally. Bigrock offers Affordable Web Hosting for personal websites, Business Hosting for small business websites, and Professional Hosting for large enterprises.

Click Here to Go Bigrock

Reseller Club

Founded in 1998, ResellerClub provides a full range of Web Presence products & services to Web Hosts, Web Designers, Technology Consultants and Domain Resellers worldwide.
ResellerClub is the industry's leading provider of full-range products and services that enable them to become a one-stop shop for web presence products online.
ResellerClub's product suite includes Domain Registration, Web and Email Hosting, SSL Certificates and Website Design which enables our Resellers to cater to the entire Web Presence market.

Click Here to Go Reseller Club
Above are the top, best and popular Web Hosting Companies. If you are know more popular hosting providers then please define it and more discuss about it.
Tags: Top Web Hosting Companies, Best Web Hosting Companies, Most Popular Web Hosting Companies, Web Hosting Providers, Best Web Hosting Service,Shared Web Hosting Companies, Reseller Web Hosting Companies, VPS Web Hosting Companies, and Dedicated server Web Hosting Companies,Affroadable Web Hosting companies

Website Speed Testing Tools


What is Page Speed Online?

Page Speed Online analyzes the content of a web page, then generates suggestions to make that page faster. Reducing page load times can reduce bounce rates and increase conversion rates.

Below are some sites to provide free facilities to test web page speed. It helps to increase web page speed and also increse SEO rank with page speed.

Google Page Speed Test Tool

Pingdom Tools



 Click Here to Go GTmetrix

Free Website Performance Test

 

Which loads faster


 

Web Page test



Web Page Analyzer



Show Slow



Site-Perf


Load Impact 


OctaGate SiteTimer


Free website speed checker



Above are best free sites to provide free website page speed testing facilities.