Elements of HTML

Elements and Tags In HTML

In This Tutorial we discuses the HTML Element and Tags. although all the HTML Tags are also called HTML elements. Below we describe a little difference in details.

HTML is a markup language, these markup are called tags which tell to the browser how to display the text on user screen.

Elements In HTML

In HTML Document Elements make the structure of Webpage and when user open this code in its browser then these element tells the browser how your website display. All the elements Of HTML consists of a start tag and end tag but some element may be have only start tag. These element are called Void element. for example <BR> which is used to break the line.

An HTML element starts with a start tag is also called opening tag and ends with an end tag is called closing tag . Some HTML elements have empty content Empty elements are closed in the start tag. Most of HTML elements may have some attributes.

For example, a paragraph, which is represented by the p element, would be written as

<p>In the HTML syntax, most elements are written ...</p>

Tags In HTML

Tags are labels you use to mark up the begining and end of an element. HTML tags also known as "HTML elements" , and their respective attributes are used to create HTML documents so that you can view them in browsers .

<!--...-->

<!doctype>

<a>

<acronym>

<address>

<applet>

<b>

<bdo>

<big>

<body>

<caption>

<center>

<dir>

<dd>

<del>

<font>

<dt>

<em>

<h3>

<frameset>

<h1>

<h6>

<head>

<hr>

<i>

<img>

<input>

<isindex>

<legend>

<li>

<colgroup>

<noframes>

<noscript>

<samp>

<span>

<p>

<style>

<script>

<select>

<map>

<sub>

<sup>

<ol>

<textarea>

<tfoot>

<pre>

<tt>

<u>

<base>

<abbr>

<basefont>

<br>

<area>

<button>

<code>

<blockquote>

<col>

<div>

<cite>

<dl>

<form>

<dfn>

<frame>

<h4>

<fieldset>

<h5>

<kbd>

<h2>

<label>

<menu>

<html>

<meta>

<optgroup>

<ins>

<option>

<q>

<link>

<s>

<strike>

<object>

<strong>

<title>

<param>

<tr>

<tbody>

<small>

<var>

<thead>

<table>

<iframe>

<th>

<td>

Note: - Above tags are discussed in details in next tutorials.