create a web page with, following specification. -add one image with an alternate text in centre of the web page. -create a paragraph related to information of that image. - use three elements ( bold, italic and underline) in paragraph
Answers
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>
create a web page with, following specification. -add one image with an alternate text in centre of the web page. -create a paragraph related to information of that image. - use three elements ( bold, italic and underline) in paragraph