Notes_on_HTML_51
Notes_on_HTML_51
Class 7
Attributes
LINE BREAK
The <br> tag defines a line break, and is an empty element without a closing tag:
HTML Headings
HTML Paragraphs
HTML paragraphs are defined with the <p> tag:
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
HTML Images
HTML images are defined with the <img> tag.
<img src="abc.jpg">
The <hr> element is used to separate content (or define a change) in an HTML
page:
HTML Table
Tag Description
Example-
<table>
<tr>
<th>Company</th>
<th>Contact</th>
<th>Country</th>
</tr>
<tr>
<td>Alfreds Futterkiste</t jd>
<td>Maria Anders</td>
<td>Germany</td>
</tr>
<tr>
<td>Centro comercial Moctezuma</td>
<td>Francisco Chang</td>
<td>Mexico</td>
</tr>
</table>
List
Unordered HTML List
An unordered list starts with the <ul> tag. Each list item starts with the <li> tag.
The list items will be marked with bullets (small black circles) by default:
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
Value Description
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
Type Description
type="I" The list items will be numbered with uppercase roman numbers
type="i" The list items will be numbered with lowercase roman numbers
The <dl> tag defines the description list, the <dt> tag defines the term (name), and
the <dd> tag describes each term:
<dl>
<dt>Coffee</dt>
<dd>- black hot drink</dd>
<dt>Milk</dt>
<dd>- white cold drink</dd>
</dl>
HTML List Tags
Tag Description
Example:
<html>
<head>
<title> Restaurant </title>
</head>
<Body bgcolor="Yellow" Text="blue">
<font color="Red">
<h1 align="center"> <b><u><i> Café Coffee Day </h1></b></u></i></font>
<img src=”coffee.jpg”>
<br>
<h2><u> About Us </h2></u>
<p> Café Coffee Day (CCD) is an Indian multinational chain of coffeehouses
headquartered in Bengaluru, Karnataka. It is a subsidiary of Coffee Day
Enterprises Limited. Internationally, CCDs are present in Austria, Czech Republic,
Malaysia, Nepal and Egypt.</p>
<ol type=”A”>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
<ul type=”square”>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
<br>
<h2> <u> Contact Us</h2></u>
<br>
Name: XYZ
<br>
Phone Number: 95********
<hr color="green" size=10>
</body>
</html>