Monday 19 August 2013

Increase Traffic

Reduce Load Time 

Hi friends we know that all blogger people want to increase their traffic so i tell you some tips.

# Low social networks icons

I tell you how to increase your traffic on blogs. So firstly keep in mind that only add some social icons. It means we add only our famous page like as Facebook,Twitter etc. 
If you have add more icons then when visitor's are click the page and it take to many seconds for loading all content and also update social networks. So reduce the icons. If you have more load time of blogs then visitor's will not come to here in future and not impress to your blogs. We all know about Facebook is the largest social community in the world.

# Main Content show on home page

 Content are play main role for every blogger blogs. So we show only our famous blogs on home page because page have took more time to update and it is not good for any blogs so visitor's are not like this. So to take action for your blogs.

# Remove Java script

If you have more use of Java script then it is cause of late page load. So you have used only require java script only in your template. And use more attractive template is come more visitor's for your blogs

# Low Intermediate Links

All blogger have known about not add more inter connection links. Because it have to take more time for load the page. You add only required links only not add useless links in the blogs. 

Friday 16 August 2013

Money with Blogging

Hi friends we all are using blogs for make money with Google Ad-Sense. So it is free and easy way to get money without any hard efforts on internet. 
Google Ad-Sense provide a simple way to make money with website's. So if we have good and lot of daily visitors then make hundred's of dollar's easily.
Firstly we signup with Ad-Sense Account then attach with blogger Earning tabs and it is approval successfully then we have got Ad on our website and high traffic of visitor's give a chance to make a lot of money in easy way with Google on internet.
If you have any query regarding about how to work Google Ad-sense then leave a message in comments box with Money with Blogging.

Blogging Tips

Blogging tips are very useful for know about How to manage your blogs and their content ? Because if we do not know about our blogs then we have not got a lot of visitors and then no get a good traffics. 
Blogs are always updated and put a unique materials for our readers  so if we are success in this section then readers are come daily and we will get easily high traffic and make money with ad-sense.


Thursday 15 August 2013

HTML head Elements

The HTML <head> Element

The <head> element is a container for all the head elements. Elements inside <head> can include scripts, instruct the browser where to find style sheets, provide meta information, and more.
The following tags can be added to the head section: <title>, <style>, <meta>, <link>, <script>, <noscript>, and <base>.

The HTML <title> Element

The <title> tag defines the title of the document.
The <title> element is required in all HTML/XHTML documents.
The <title> element:
  • defines a title in the browser toolbar
  • provides a title for the page when it is added to favorites
  • displays a title for the page in search-engine results
A simplified HTML document:
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
</head>

<body>
The content of the document......
</body>

</html>



The HTML <base> Element

The <base> tag specifies the base URL/target for all relative URLs in a page:
<head>
<base href="http://www.Google.com/images/" target="_blank">
</head>



The HTML <link> Element

The <link> tag defines the relationship between a document and an external resource.
The <link> tag is most used to link to style sheets:
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>



The HTML <style> Element

The <style> tag is used to define style information for an HTML document.
Inside the <style> element you specify how HTML elements should render in a browser:
<head>
<style type="text/css">
body {background-color:yellow}
p {color:blue}
</style>
</head>



The HTML <meta> Element

Metadata is data (information) about data.
The <meta> tag provides metadata about the HTML document. Metadata will not be displayed on the page, but will be machine parsable.
Meta elements are typically used to specify page description, keywords, author of the document, last modified, and other metadata.
The metadata can be used by browsers (how to display content or reload page), search engines (keywords), or other web services.
<meta> tags always go inside the <head> element.

<meta> Tags - Examples of Use

Define keywords for search engines:
<meta name="keywords" content="HTML, CSS, XML, XHTML, JavaScript">
Define a description of your web page:
<meta name="description" content="Free Web tutorials on HTML and CSS">
Define the author of a page:
<meta name="author" content="Hege Refsnes">
Refresh document every 30 seconds:
<meta http-equiv="refresh" content="30">



The HTML <script> Element

The <script> tag is used to define a client-side script, such as a JavaScript.
The <script> element will be explained in a later chapter.

HTML head Elements


Tag Description
<head> Defines information about the document
<title> Defines the title of a document
<base> Defines a default address or a default target for all links on a page
<link> Defines the relationship between a document and an external resource
<meta> Defines metadata about an HTML document
<script> Defines a client-side script
<style> Defines style information for a document

HTML Links

HTML Hyperlinks (Links)

The HTML <a> tag defines a hyperlink.
A hyperlink (or link) is a word, group of words, or image that you can click on to jump to another document.
When you move the cursor over a link in a Web page, the arrow will turn into a little hand.
The most important attribute of the <a> element is the href attribute, which indicates the link’s destination.
By default, links will appear as follows in all browsers:
  • An unvisited link is underlined and blue
  • A visited link is underlined and purple
  • An active link is underlined and red

HTML Link Syntax

The HTML code for a link is simple. It looks like this:
<a href="url">Link text</a>
The href attribute specifies the destination of a link.

Example

<a href="http://www.Google.com/">Visit Google</a>

Clicking on this hyperlink will send the user to Google' homepage.
Tip: The "Link text" doesn't have to be text. It can be an image or any other HTML element.

HTML Links - The target Attribute

The target attribute specifies where to open the linked document.
The example below will open the linked document in a new browser window or a new tab:

Example

<a href="http://www.Google.com">Visit Google!</a>




HTML Links - The id Attribute

The id attribute can be used to create a bookmark inside an HTML document.
Tip: Bookmarks are not displayed in any special way. They are invisible to the reader.

Example

An anchor with an id inside an HTML document:
<a id="tips">Useful Tips Section</a>
Create a link to the "Useful Tips Section" inside the same document:
<a href="#tips">Visit the Useful Tips Section</a>
Or, create a link to the "Useful Tips Section" from another page:
<a href="http://www.w3schools.com/html_links.htm#tips">
Visit the Useful Tips Section</a>



Basic Notes - Useful Tips

Note: Always add a trailing slash to subfolder references. If you link like this: href="http://www.w3schools.com/html", you will generate two requests to the server, the server will first add a slash to the address, and then create a new request like this: href="http://www.w3schools.com/html/".



HTML Link Tags

TagDescription
<a>Defines a hyperlink