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.
Answers
Answered by
66
Web page of a scientist
Explanation:
HTML web page
<!DOCTYPE html>
<html>
<body>
<center><h2>Scientist</h2></center>
<img src="CVRaman.jpg" alt="CVRaman" width="104" height="142">
<p>Dr. Chandrasekhara Venkata Raman won Nobel Prize in 1930 and got to be the primary Indian to get it in Physics. He found the Raman Impact that's diffusing of light.</p>
<table>
<tr>
<th>Invention</th>
<th>Year of Invention</th>
<th>Award</th>
</tr>
<tr>
<td>Raman Effect</td>
<td>1928</td>
<td>Nobel prize</td>
</tr>
</table>
</body>
</html>
Similar questions