Trust me i know HTML

There u can find all things about html.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Table Tags

In every document we use tables to arrange items to place different values in front of some different things.
Similarly in HTML we use table tag to make tables we use table tag <table>.
It is written as
Tag: <table></table> Creates a table

For rows:
Tag: <tr></tr> Sets off each row in a table

For cells:
Tag: <td></td> Sets off Each cell in a table>

Attributes:
To align the test in table
align=left, right, center

To manig boder line:
To manage border of the table
border=x

For cell pading
cellpadding=x

For cell spacing
cellspacing=x

Width and height of the table
width=
height=

How these work and look: All these tags must be closed. </>

<table width='250' height='250' border=1 cellpadding=2 cellspacing=2>
<tr>
<td>cell 1</td>
<td>cell 2</td>
</tr>
</table>
cell 1 cell 2

Italic Tags

Tag: <i></i>(Has closing tag) </> means closed.
What it Does: Creates Italic text.
Code Example: <i> This text is italic. </i>
What it looks like:
This text is italic.

Bold Tags

Like giving heading in html similarly we use bold tag to create bold letters

Tag: <b></b>(Has closing tag) </> means closed.

What it Does: Creates bold text

Code Example: <b>this is bold. </b>

What it looks like:

this is bold.

Line Brake Tag

In usual document we use enter button to brake line to start another but in html we have to use line break tag to start another line.
 <br> Tag is use for this popuse
Tag:
<br> (Has no closing tag)
What it Does: Puts a one line break between text.
Code Example:
This is a break tag. <br> This is another break tag.

What it looks like:

This is a break tag.
This is another break tag.

Paragraph tags

Tag: <p> </p> (Has a closing tag) </> means closed.
What it Does: Puts 2 breaks between lines of text.
Attributes:
Align=left, right, center
Code Example:
<p align=left>This is a paragraph tag</p>
<p align=left >This is a paragraph tag</p>
What it looks like:
This is a paragraph tag.
This is a paragraph tag.

How to make link which opens in new tab

For making a link which open in new tab you can simply paste one more attribute in it.

Target=_blank
it written as
<a href='URL of the website or page' 'Target=_blank'>Text to display</a>

For Example: 
 <a href='http://blockingfucks.blogspot.com/' 'Target=_blank' >Our home page</a>
 Element:
   Target is the attribute which controls how to open the page
    Its possible values are given,,,
   
    _Blank  to open in new window
    _Self    to open in present window
    _parent to open in parent window
    _Top  to open in full body window
   Framename to open window in desire T ital bar window .

Hyperlink Or Links

Hyper links are called links in html. Links can be text or document or image or button which can take to another place.

Links tag is start from <a> 
It written as <a href='Url of the website or page'>Text to display</a>

For Example: 
 <a href='http://blockingfucks.blogspot.com/'>Our home page</a>

Elements:
1: Href is the attribute which decides the destination page to launch.
2: URL of the website or page remove this text and place the URL of page to go.
3: When you click on the text (our home page ) it will take you to that URL which you inserted on link.

For making a link which open in new tab you can simply paste one more attribute in it.

Target=_blank
it written as
<a href='Url of the website or page' 'Target=_blank'>Text to display</a>

For Example: 
 <a href='http://blockingfucks.blogspot.com/' 'Target=_blank' >Our home page</a>
 Element:
   Target is the attribute which controls how to open the page
    Its possible values are given,,,
    
    _Blank  to open in new window
    _Self    to open in present window
    _parent to open in parent window
    _Top  to open in full body window

   Framename to open window in desire T ital bar window .

Entri Populer