Tuesday, 6 May 2014

HTML TABLES


Hi friends Assalam-o-alaikum

Friends as you know that in the previous we discussed about css selectors and how to use them and few of their types. Today I come with new topic which is all about the html table some people think that the html table. Believe on me it is not difficult as you think. It is very easy it needs only your concentration. Table is essential to learn it help in submitting your data in table and also helps in making layout. Yes you can design layout with it.

BASIC TABLE

The basic structure of table consists of some basic table tags. Table contain of rows and columns. The html table consists of some basic tag which is given below,

<table></table> this tag defines the table in webpage.
<tr></tr> the tr tag defines the table row in table.
<th></th> the th tag defines the heading in table.
<td></td>this tag defines the data in the table.

For example

<table>
<tr>
<td>name</td>
<td>category</td>
<td>price</td>
<tr>
<td>physics</td>
<td>science</td>
<td>200</td>
</tr>
</table>

ADDING TITLE HEADING AND BORDER.

As you need title and heading for your page as like you need title and heading and also border for html tables?
BORDER; you can syle tables with css and also with the the attributes.

For example:

<table border="5"  >
<tr>
    <th colspan="3">BOOK STORE</th>
</tr>
<tr>
 <td>name</td>
<td>category</td>
<td>price</td>
</tr>
<tr>
<td>physics</td>
<td>science</td>
<td>200</td>
</tr>
</table> 
SCREENSHOT 
html table

HEIGHT, BORDER COLOR, WIDTH.


We can set the height of table and width of the border and also add the color to make it beautiful.

FOR EXAMPLE
<table border="4" bordercolor="red" width="50%" height="40%">
<tr>
    <th colspan="3">BOOK STORE</th>
</tr>
<tr>
 <td>name</td>
<td>category</td>
<td>price</td>
</tr>
<tr>
<td>physics</td>
<td>science</td>
<td>200</td>
</tr>
<tr>
<th colspan="3">www.worldoftuorials9.blogspot.com</th>
</tr>
</table>
SCREEN SHOT 
html table 2

CELL SPACING AND CELLPADDING.

To add the padding and spacing between the tables we use these attributes cellpadding and cellspacing. Cell padding defines the padding between the cell and cellspacing defines space between the cells.
FOR EXAMPLE;
<table border="4" bordercolor="red" width="50%" height="40%" cellspacing="8" CELLPADDING="7">
<tr>
    <th colspan="3">BOOK STORE</th>
</tr>
<tr>
 <td>name</td>
<td>category</td>
<td>price</td>
</tr>
<tr>
<td>physics</td>
<td>science</td>
<td>200</td>
</tr>
<tr>
<th colspan="3">www.worldoftuorials9.blogspot.com</th>
</tr>
</table>
SCREEN SHOT 
html table

ADDING CSS TO TABLES

We can use css to add styling to the tables it makes it more beautiful and better looking. We are only describing it little bit.
FOR EXAMPLE
<table border="5" style="background-color:#F62817;border:1px dotted black;width:80%;border-collapse:collapse;">>
<tr>
    <th colspan="3" style="background-color:#C11B17">BOOK STORE</th>
</tr>
<tr>

<td>name</td>
<td>category</td>
<td>price</td>
</tr>
<tr>
<td>physics</td>
<td>science</td>
<td>200</td>
</tr>
<tr>
<th colspan="3">www.worldoftuorials9.blogspot.com</th>
</tr>
</table>

html tables

FINAL WORLD


Friend now you can make the table easily first keeps practicing. Remember us in your prayer and share our post with your friends. Keep visiting.


Read More...

Sunday, 4 May 2014

CSS SELECTORS

Hi friend, Assalam-o-alaikum.

As you know from few days we learn the html such as htmlbasic tags, html meta tags, text formatting in html. Today I am going to present tutorial on css selector. I don’t take your time much. lets start.

What is css selector?

Css selector contain of id and class with class and id you can specify any element on the page which you want to style.
Css selector is used to identify or find the html elements which are based on their id, attribute etc.

THE ELEMENT SELECTOR.

The element selector is the base on element name.
If you want to style paragraph use p tag identify the selector
For example you want to select the paragraph and want to change its background or font. What you will do? Here is how we can do this is very easy

P{
Background-color:violet red;
font-family:Verdana;
}

In the above the case it design the all paragraph on the page and also their font but you want to design particular paragraph on the how we will do this? This is easy we can do this with css selector id and class. You add class or id tag. Like this.

Html
<p id=”important”>this is the important paragraph on the page we want design different from other</p>
This is how we add id in html now we can indicate this paragraph particularly.
Css
#important{
Background-color:violet red;
font-family:Verdana;
}                                                                     

 What is id?

For id selector we use id attribute with in the html tag.
Id tag must be unique. It should be not repeated again and again
The id is unique and it is use only one time in the whole page.
The id can be identifying with the hash (#) character.
                                                                                                
FOR Example
#paragraph1 {
Background-color:blue;
}

What is class?

For class selector we use class attribute with in the html tag.
The class can be used multiple times on the page. It can be repeated again and again.
The class is not unique it can be use many times on the same page.
The class selector can be identifying with the period (full stop).

NOTE
The same class can be use on multiple elements.
The multiple classes can be use on same elements.

For example.
.paragraph2{
background-color:green;
}

GROUPING SELECTOR.

The grouping selector is use when you want to apply same style to different elements. For this you can use group selector.
It reduces your effort to write same code again and again.
For example: if you want to change the font family of all headings.

h1,h2,h3,h4,h5,h6{
font-family:Gorgia;
 }
                                                 

FINAL WORDS.
In the above we mentioned the basic selector which commonly used by every one Inshallah in few days we will discuss on the advanced css selector but it is important that you have basic understanding of selector. Please keep visiting and share our post with your friends. Thanks!
Read More...

Saturday, 3 May 2014

TEXT FORMATTING IN HTML

Hi friends, Assalam-o-alaikum as we learnt earlier the link tag and image tag now come to the text formatting in html. It is necessary to know because text formatting is main part without you can not manage your contact. Today I am going explain how make text italic bold underlined different forms of tag. These tag make your content readable and beautiful you can make it more beautiful to add css to webpage. This will be discussed in future how to make page more beautiful with css. Let’s come to the topic.

TEXT FORMATING.

HEADING.

As you know in every page first and important tag is heading tag. You can use various sizes of heading tag. Heading tag has six levels h1 to h6. The biggest heading h1 and smallest is h6.

For example

<h1>heading one</h1>
<h2>heading two</h2>
<h3>heading three</h3>
<h4>heading 4</h4>
<h5>heading five</h5>
<h6>heading six</h6>

 PARAGRAPH.

The second most tag in the page is paragraph with this tag you show different paragraph. It leaves the blank line before and after the paragraph.
 <p>this is paragraph tag<p>

Line break.


The <br /> tag we used to break line this is the example of an empty tag. This tag use to break line not to separate paragraph.

<hr>

<hr >tag used to separate the content in html page. It has no end tag in html but in xhtml its closing tag look like this <hr />.it is also an example of empty tag.

BOLD TEXT.

The text between the <b></b> the text displayed as bold.

For example;

<p>this the <b>bold</b> tag in paragraph</p>

ITALIC TEXT.       

The text between the <i>italic</i> the text displayed as italic.

For example;


<p> this is the</i> italic</i> tag in paragraph</p>

UNDERLINED TEXT.

The text between the in tags<u>underlined</u>this text will displayed as underlined.

<p>this is the paragraph tag with explanation of <u>underlined</u> tag.

 STRIKE-OUT

It puts the line through the text.

For example

<strike>This tag is strike</strike>

PERFORMATTED TEXT

The text between the tag it will be display as you write it in the text editor. You can add multiple spaces which browser neglect.

For example

<pre>this is the preformatted text</pre> 

 SUPERSCRIPT TEXT.

The <sup> tag defines the superscript text. The text appears half character above the baseline.
 <p> this is the paragraph contains on <sup>script text</sup></p>

SUBSCRIPT TEXT.

The <sub> tag defines the subscript text. The text appears half character below the baseline.
 <p>this is the paragraph contain on <sub> subscript text</sub></p>

SMALL TEXT

Instead of using font size we use small text tag. This tag make small text than the normal text.
 <p>this is the paragraph tag with the <small>small tag</small><p>

LARGE TEXT.

For large text we simply use <big></big>tag.
 <p> this is the paragraph tag with <big>large text</big></p>

FINAL WORDS.

In this tutorial you have learnt about the html text formatting. Now you have concept of text formatting. Please visit us regularly and don’t forget to share our post with your friends.
Read More...

Friday, 2 May 2014

HTML LINK AND IMAGE TAG

Hi friends. I hop you are all fine with the bless of Allah as you know that in previous tutorial we discussed about the meta tags in html. I think now every body knows about the meta tags of html and how these tags are important. Let’s come to the topic today we are going to discuss about the links in html. Links are the backbone of the html without link tag the webpage is nothing. Let’s start.

What is the link?

Links or hyperlink is a word, group of word, image on which we click to jump to another page.
When you take your cursor to the link it will be change into small hand.
                                                                                                          

Note.

Unvisited link underlined and has blue color.
Visited link underlined and has purple color.
Active link is underlined and red color.

LINK TAG.

Link tag can be written as;

<a href="index.html" target="_blank">HOME</a>
a; ( a shows the anchor which means link ) .
href; (hypertext reference this attribute shows the where is document located)
target; target attribute it is important you must know about this if you want to open the link in new  window or tab it will help you . you use target attribute. ( _blank the value of attribute this value open the link in new window or tab.

NOTE

You can add various documents to the page with html link tag like html document, mp3 file, ms files and PDF etc.

Image and link tag contain attributes .

IMAGE TAG

In html we can easily add link to the image for this first we have take look to the html image tag then we can add the link to image.
Lets discuss about the image tag. Imag tag can be written as

<img src=”Pakistan.jpeg” title=”we proud on palkistan” alt=”pakistan nation” width=”30” height=”30”>

Img;  this tag specify the image
Src;  the attribute which is used to tell the location of image.
Extension;  it is important to write the extension or formate of the image like jpeg, gif, png etc. without the extension it the image will not display.
alt; the alternate name for the image. If the image can not display for some reason it will helpful.
Title; The tile of the image what the tile you choose for image.
Width and height; you can set the width which you like as well as height.

LINK TO THE IMAGE

Link to the image it is easy you have to write the image tag between the link tag. Like this,

<a href=”url”><img src=”image.png”></a>     

 FINAL WORDS.

 Friends now you have understanding of html links and the importance of the link and images. Remember in your prayers keep visiting and don’t forget to share our tutorial with your friends. Thanks!
Read More...

Thursday, 1 May 2014

META TAGS IN HTML

Who does not want to top search engine every blogger has dream to top search engine ranking. There are many bloggers who doing lots of effort in order to get high traffic or top rank in search engine. The meta tags one of the way to top search engine ranking and for getting more traffic. The meta tags tell the search enige what your blog or website is about, to implement meta tags incorrectly it can be dangrous for your blog or website.
Also visit this article=HTML DOCUMENT TYPE DECLARATION

What are meta tags?

  • Html Meta tags lie between the opening and closing of head tag in html document.
  • The data in these tags not showed on browser.
  • The meta tags tell the browser and search engine what your site is about.

TITLE TAG.

Title tag is not meta tag .but it is important to write the title tag should not be long it contain some word like your page name as like index, profile etc. it is also written in head tag.

META DESCRIPTION.

As I mentioned before that the meta description tag tell the browser and search engine what your blog or websit is about. It is important to write good description for search engine which they can understand. It is also important to write meta description on every page but it should be different frome each other . Meta description should no longer 155 character even including spaces. It can be written as:

<meta name="description" content="description goes here">

META KEYWOEDS.

Meta keywords contain the words which  familar with your blog or website. This tag also helps to get lot of traffic. The meta keywords tag should be  contain on 20 words.

<meta name="keywords" content="keywords goes here">

ROBOTS META TAGS.

This tag is important and main tag. The robot meta tags specify the particular page that

 Should be index to the search engine or not and the links on that page are followed by search engine or not. Meta tags can be written in four different methods given below.

              <META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
                In this method the search engine  doesn't index your page and doesn't follow the links to the other pages.
                         <META NAME="ROBOTS" CONTENT="INDEX, NOFOLLOW">
 In this method you requests to the search engine that index the page but don’t follow the links to other pages.

<META NAME="ROBOTS" CONTENT="NOINDEX, FOLLOW">
In this method the search engine doesn't index the page but follow the links to the other pages.

                         <META NAME="ROBOTS" CONTENT="INDEX, FOLLOW">
In this method the search engine index the page and also follow the links to the other pages.

CONCLUSION .

Now you have understanding of meta tags these tags helps a lot to get high page rank or lots of traffic.
Remember in your prayers and keep visiting and share the post with your friends.


Read More...

Tuesday, 29 April 2014

HTML DOCUMENT TYPE DECLARATION

Hi friends! As you now in the previous post we share the basic of html tags and i think you know something about html tags. Today we take step toward the html declaration don't worry  i explain it briefly.


What is document type declaration?

·        Doc type declaration is a kind of instruction to tell the web browser which version of html we are using.

·        In html we use document type declaration refer to DTD (document type definition) because html based on SGML. The DTD indicate the rule of markup languages.

·        With document type declaration browser understand how to show the content on webpage.

·        Always try to use document type declaration and tell the browser how to show the content on webpage.

TYPES OF DECLARATION;
There are three types of declaration in html and xhtml.

1.     Strict
2.     Transitional
3.     Frameset

DOCUMENT TYPE DECLARATION IN HTML(4.01)
STRICT
This type of declaration consists of html element and attributes, but does not include presentational or deprecated elements. Frameset not supported in this type of declaration.
                  
           < !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML4.01//EN"
              "http://www.w3.org/TR/html4/strict.dtd"
TRANSITIONAL;
 This type of declaration consists of html element and also including presentational or deprecated elements. Frameset not supported in this document type declaration.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
FRAMESET
This type of declaration consists of html element and attributes, including presentation and deprected elements. Framset is supported in this declaration.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">

 
DOCUMENT TYPE DECLARATION IN XHTML (1.0)


STRICT
This type of declaration consists of html element and attributes, but does not include presentational or deprecated elements. Frameset not supported in this type of declaration.
It is important to write in well-formed xml.
                  
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
TRANSITIONAL;
 This type of declaration consists of html element and also including presentational or deprecated elements. Frameset not supported in this document type declaration.
It is important to write in well-formed xml.


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

FR AMESET
This type of declaration consists of html element and attributes, including presentation and deprecated elements. Frameset is supported in this declaration.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> 

FINAL WORDS
friend i think now you get it how the declaration and why the declaraton use in html document. please visit us regularly and share our post with your post with your friend and support us.
Read More...

Wednesday, 23 April 2014

HTML BASIC TAGS

In the last tutorial we learn basic definition of of html, tags, element and attributes.
Html is easy of all other language and today i come with the basic tag  of html. It is said by mostly designer the html tags are easy any body can learn it in five minutes.

<html> </html>

Html tag tells the browser that it is an html document. All the html tag describe in the html tag. Each document have an opening tag and closing tag like that <html> </html>

<head>

It is the first tag which is written after the html opening tag <html>. This tag is containing on all information about head section. It is contain on title tag, Meta tags, cascading style sheet (css), JavaScript tags. All the script tag are written in head such as JavaScript, VBScript inside the document.

EXAMPLE


<head><title> this is my first page </title><meta name=’keyword’ content=”html, css, JavaScript” /> (this is  a meta tag)<link rel=”stylesheet” type=”text/css” href=”tutorialworld.css”/><scrip type=’text/javascript’>document.write(“hello world”);</script></head>

<body>

Body is the most important tag which comes after the head tag. It contain of content tags such as hyperlinks, text, images, list, tables, form and frames etc. It is main and important section of page because all the thing which display on webpage written in this section.

EXAMPLE

<html><head><title>body tag</title></head><body><p>this is paragraph tag which indicate the paragraph in your webpage it leave a blank line before and after the paragraph.</p></body></html>

 Paragraph TAG <p></p>


This tag defines the paragraph in webpage it leaves blank line before and after the paragraph.

EXAMPLE
<body><p>this is paragraph tag which indicate the paragraph in your webpage it leave a blank line before and after the paragraph. </p></body>

HEADING TAGS<h1></h1>

These tags indicate different heading it start from h1 to h6. h1 heading is the bid heading all of them and h6 is smallest.

EXAMPLE


<body><h1>HEADING </h1><h2>HEADING </h2><h3>HEADING </h3><h4>HEADING </h4><h5>HEADING </h5><h6>HEADING </h6></body>

IMAGE TAG <img>

This tag defines html image tage to show the image on webpage.
"src"(source) where is your file locate. It is important write the format image otherwise it will nor show the image.

EXAMPLE


<body><img src="image.gif" /></body>

LINK TAG

Link tag defines the link tag in webpage. It is very important tag because links are important to the webpage and without link tag the
Webpage is incomplet. Link tag is <a href=""></a> (a indicate anchor and href means hyper text reference) and the address of link written between inverted coma.

 FOR EXAMPLE


<body><a href="www.worldoftutorial.blogspot.com">world of tutorial</a></body> 

FINAL WORDS.


In this lesson you learned about basic tags of html and now you have understanding of basic tags. Please share our tutorial with your friends.
Read More...