Project Code
Project Code
<head>
<title>Project File by Aditya Soperna Class X=A</title>
</head>
<body bgcolor="#00FFFFA">
<h1>ALL ABOUT HTML</h1>
HTML stands for HyperText Markup Language used for designing webpages.<br>
An HTML document has various sections(This is unordered list):
<ul>
<li> HTML Section </li>
<li> Head Section </li>
<li> Title Section</li>
<li> Body Section</li>
</ul>
Body tag has the following attributes(This is ordered list)
<ol type="I">
<li>BGCOLOR</li>
<li>BACKGROUND</li>
<li>LINK</li>
<li>ALINK</li>
<li>VLINK</li>
<li>TEXT</li>
<li>LEFTMARGIN</li>
<li>TOPMARGIN</li>
</ol>
There are 6 headings in HTML,which are as follows
<h1>h1</h1>
<h2>h2</h2>
<h3>h3</h3>
<h4>h4</h4>
<h5>h5</h5>
<h6>h6</h6>
<b><i><u>We can also make the text bold,italics and underlined using "b","i" and "u" tags
respectively.These are all container tags.</b></i></u> <br>
We also have some special tags<br>
<dl>
<small><dt>SMALL</dt> <dd> makes the blocked text one size smaller than the default
size</dd></small><br>
<big> <dt>BIG</dt><dd> makes the blocked text one size bigger than the default size</dd></big>
<dt>CENTER</dt><center><dd> makes the blocked text,image.table etc. centre
aligned</dd></center><br>
<dt>SUP</dt><dd>Superscipt: (A+B)<sup>2</sup></dd><br>
<dt>SUB</dt><dd> Subscript: H<SUB>2</SUB>O</dd><br>
<dt>BR</dt><dd> We have alo used "br" i.e. line break in various places.</dd>
<dt>Blockquote</dt>
<Blockquote><dd> tag is used add a space of 2 indents from side margin</dd></blockquote>
<dt>STRIKE or S</dt><s><dd>It is used to strikethrogh the text</dd></s>
THIS WAS EXAMPLE OF DESCRIPTION LIST<br>
<font style="Times New Roman" size="31" color="red"> We can even change colour,size and
typeface of text using "font" tag and its attributes "size","color" and "face"</font><br>
We can add a horizontal line using "hr"
<hr noshade size="5" width="100%" color="white">
<img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/b/bd/Indian_Space_Research_Orga
nisation_Logo.svg/1200px-Indian_Space_Research_Organisation_Logo.svg.png" alt="ISRO"
hspace="51" vspace="51" border="5" height="251" width="251">
<big><pre>In "PRE" tag
text appear exactly as it is,with fixed number of spaces,returns etc.</pre></big>
<table bgcolor="yellow" border="4" cellspacing="0" cellpadding="10">
<tr>
<th colspan="6">ADITYA SOPERNA</th>
</tr>
<tr>
<td rowspan="2">Marks</td>
<td>Lab Test</td>
<td>Viva</td>
<td>Project file</td>
<td>Practical file</td>
<td>CBSE Boards</td>
</tr>
<tr>
<td>FULL</td>
<td>FULL</td>
<td>FULL</td>
<td>FULL</td>
<td>100%</td>
</tr>
</table><br>
<video width="400" height="350" controls>
<source src="https://youtu.be/H10igyNHsr4" type="video/mp4">
</video>
<h1><center>Feedback of the project</center></h1>
<form>
Name <input type="text" name="name"> <br>
Gender:
Male<input type="radio" name="gender" value="male">
Female<input type="radio" name="gender" value="female"><br>
How was the project?<br>
<input type="checkbox" name="feed">Novel <br>
<input type="checkbox" name="feed">Entertaining<br>
<input type="checkbox" name="feed">Informative<br>
<input type="checkbox" name="feed">Nice presentation<br>
Rating: <select name="rating">
<option>Fantastic
<option>Excellent
<option>Too good</select>
<p>
For further communication please send a mail using mailto
<a href="mailto:[email protected]">link</a>
</body></html>