Std. XI I.T || Skill Set 2 - HTML5 || SOP 2


Create a web page with following specification
·         Image of any scientist with an alternate text as his name.
·         Create a paragraph related to information of that scientist.
·         Create a table of his/her inventions.


HTML Code:
<!DOCTYPE html>
<html>
<head>
<title>sop2</title>
</head>
<body>
<img src="F:\Rupali\Std XI\SOP\SatyenBose.jpg" alt="Satyendranath Bose">

<p><big><b>Satyendra Nath Bose</b></big> is best known for his work on quantum mechanics in the early 1920s, providing the foundation for Bose-Einstein statistics and thetheory of the Bose-Einstein condensate. A Fellow of the Royal Society, he was awarded India's second highest civilian award, the Padma Vibhushan in 1954
by the Government of India.The class of particles that obey Bose-Einstein statistics, <b>Bosons</b>, was named after Bose by Paul Dirac.</p>

<table border=1>
<caption>Inventions</caption>
<tr>
<th>Sr.No.
<th>Work
</tr>
<tr>
<td>1
<td>Paper on Planck's quantum radiation law
</tr>
<tr>
<td>2
<td>Bose-Einstein condensate Boson
</tr>
</table>
</body>

</html>

Output:




Comments

Popular posts from this blog

Std XI I.T || Skill Set 3 – JavaScript || SOP1

Std. XI I.T || Skill Set 2 - HTML5 || SOP 4

Std XI I.T || Skill Set 3 – JavaScript || SOP3