Html Tags

Submitted by: Submitted by

Views: 10

Words: 3162

Pages: 13

Category: Science and Technology

Date Submitted: 10/02/2015 07:04 PM

Report This Essay

HTML Tags

Name | HTML Tag | HTML Code Example | Browser View |

HTML Comment | <!-- | <!--This can be viewed in the HTML part of a document--> | Nothing will show (Tip) |

HTML Anchor | <a> | <a href="http://www.domain.com/">

Visit Our Site</a> | Visit Our Site (Tip) |

HTML Bold | <b> | <b>Example</b> | Example |

HTML Big(Text) | <big> | <big>Example</big> | Example (Tip) |

Body of HTML Document | <body> | <body>The content of your HTML page</body> | Contents of your web page (Tip) |

HTML Line Break | <br> | The contents of your page<br>The contents of your page | The contents of your page

The contents of your page |

HTML Center | <center> | <center>This will center your contents</center> | This will center your contents |

HTML Definition Description | <dd> | <dl>

<dt>Definition Term</dt>

<dd>Definition of the term</dd>

<dt>Definition Term</dt>

<dd>Definition of the term</dd>

</dl> | Definition TermDefinition of the termDefinition TermDefinition of the term |

HTML Definition List | <dl> | <dl>

<dt>Definition Term</dt>

<dd>Definition of the term</dd>

<dt>Definition Term</dt>

<dd>Definition of the term</dd>

</dl> | Definition TermDefinition of the termDefinition TermDefinition of the term |

HTML Definition Term | <dt> | <dl>

<dt>Definition Term</dt>

<dd>Definition of the term</dd>

<dt>Definition Term</dt>

<dd>Definition of the term</dd>

</dl> | Definition TermDefinition of the termDefinition TermDefinition of the term |

HTML Emphasis | <em> | This is an <em>Example</em> of using the emphasis tag | This is an Example of using the emphasis tag |

HTML Embed Object | <embed> | <embed src="yourfile.mid" width="100%" height="60"...