Trust me i know HTML

There u can find all things about html.

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...

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 itali...

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 bol...

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 ta...

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 ta...

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    ...

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...

Entri Populer