Make a table in your copy with the following columns:
Tags, attributes and functions they perform. (Include every tag learnt till now)
Answers
Answer:
this contains all tags for beginner and as well as ender
<!DOCTYPE HTML created by aryan>
<html>
<head>
<title>Html tutorial for class viii B</title>
<style type="text/css">
{
}
</style>
</head>
<body bgcolor="Orange" text="red" >
<u>
<font size="8" color="yellow" align="center">___________________Html tutorial ch 1________________</font><br>
</u>
<h1>
<p align="justify">This paragraph is aligned in justify and this is in headind one means
h1 tag</p>
</h1>
<h2>
<p align="right"> This paragraph is alignen in right and in h2 tag
</p>
</h2>
<h3>
<p align="center">This paragrph is aligned in center and is in h3 tag
</p>
</h3>
<h4>
<p align="left"> THIS IS ALIGNED IN LEFT AND IS IN H4 TAG
</p>
</h4>
<h5>
<p>This is a non aligned paragraph by default it comes in left and is in h5 tag
</p>
</h5>
<h6>
<p>This paragraph is in h6 means heading 6 </p>
</h6>
<hr size="10">
<p align="center">
<font size="5" color="lime"> Swami dayanand </font><br>
</p>
<h3>
<p>Swami Dayanand is remembered with reverence and affection among the social-reformers of the nineteenth century.
He raised his voice against idol-worship. That was a time when religious hypocrisy was rife, social evils like child-marriage was an accepted practice,
widows were ill-treated.
It was Swami Dayanand who showed remarkable courage in decrying these practices and instituting reforms.
At the Kumbh fair of 1876 in Haridwar, he spoke openly against social evils and kept his views frankly in favour of widow-remarriage.
He established the glory of Vedas and founded a progressive and reformist society, which he named Arya Samaj.
His works Satyarath Prakash, Rigved Bhumika etc. are well-known.
He also wrote a treatise on the Vedas.</p>
</h3>
<font size="4" color="purple"> This paragraph is without br tag </font><br>
<hr>
<p align="center">
<font size="5" color="aqua">Swami dayanand</font>
</p>
<h3>
<p> Swami Dayanand is remembered with reverence and affection among the social-reformers of the nineteenth century.
<br> He raised his voice against idol-worship.<br>
That was a time when religious hypocrisy was rife, social evils like child-marriage was an accepted practice, widows were ill-treated.
<br> It was Swami Dayanand who showed remarkable courage in decrying these practices and instituting reforms.
<br>At the Kumbh fair of 1876 in Haridwar, he spoke openly against social evils and kept his views frankly in favour of widow-remarriage.<br>
He established the glory of Vedas and founded a progressive and reformist society, which he named Arya Samaj.<br>
His works Satyarath Prakash, Rigved Bhumika etc. are well-known.
He also wrote a treatise on the Vedas.
</h3> </p>
<font face="verdana" color="pink" > This paragraph is with br tag </font><br>
<hr size="10">
<h3>
<p align="center">
This is simple line.<br>
<u> This text is underlined use u tag to under line.</u> <br>
<em>This text is italic use i or em to make a text italic.</em> <br>
<b>This text is bold use b for bold.</b> <br>
<font face="verdana" color="silver"> This line is having a font verdana, in page 45 </font> <br><br>
<u>
<i>
<b>
<font face="courier" color="BlueViolet">This is underlined,Italic& bold with courier font </font>
<//u>
</i>
</b>
</p>
</h3>
<h1> <marquee direction="down" style="text-align:center;color: purple" >END</marquee> <br><br>
<marquee direction="left">END</marquee> <br><br>
<marquee direction="right"> END </marquee> <br><br>
<marquee direction="up" style="text-align: center; color: purple" >END</marquee>
<hr bgcolor="yellow"size="15" width="1250px"
<hr>
</h1>
</body>
</html>
Explanation:
this is a table tag
<!doctype HTML>
<html>
<head>
<title>Untitled</title>
</head>
<body>
<table border="1">
<tr>
<td>MY FAVOURITE CARS </td>
<TD></TD>
<TD></TD>
<TD></TD>
</tr>
<tr>
<th>CAR</th>
<th>TYPE</th>
<th>COMPANY</th>
<th>PRICE</th>
</tr>
<tr>
<td>DATSUN REDI GO</td>
<td>HATCHBACK</td>
<td>NISSAN</td>
<td>3.5 LAKH</td>
</tr>
<tr>
<td>E VARITO</td>
<td>SEDAN</td>
<td>MAHINDRA</td>
<td>9.5 LAKH</td>
</tr>
<tr>
<td>AMEO</td>
<td>HATCHBACK</td>
<td>WOLKSWANGON</td>
<td>6.0 LAKH</td>
</tr>
<tr>
<td>ECOSPORT</td>
<td>SUV</td>
<td>FORD</td>
<td>9.0 LAKH</td>
</tr>
</table>
</body>
</html>