Can someone put these three parts into one HTML web code. All the code is done.
ID: 3577106 • Letter: C
Question
Can someone put these three parts into one HTML web code. All the code is done.
https://www.chegg.com/homework-help/questions-and-answers/colors-web-page-must-include-color-definitions-background-color-default-text-color-accompl-q17334945
https://www.chegg.com/homework-help/questions-and-answers/image-map-addition-three-images-must-create-one-image-least-400-pixels-wide-300-pixels-tal-q17334949
https://www.chegg.com/homework-help/questions-and-answers/tables-must-least-one-rows-4-columns-least-one-usage-table-least-4-links-colspan-rowspan-c-q17334955
Explanation / Answer
HTML web code. All the 3 questions code is done.in one page ;-
<!DOCTYPE html>
<html>
<head></head>
<body bgcolor="orange">
<h1>Example of back groung color and text colors</h1>
<p>This red color applyed to the text by using style tag with color attribute.</p>
<p><fount color="blue">This blue color appplyed to the text by using font tag with color attribute.</p>
<h2>Example on image tag</h2>
<img src="h.jpg" alt="html" height="400" width="300">
<h2>Example of table Rowspan and Colspan :-</h2>
<table border="1">
<tr>
<th>Bank Name:</th>
<th>Branches</th>
<th colspan="2">Telephone</th>
<th> Total Accounts</th>
</tr>
<tr>
<td rowspan="2">XYZ Bank</td>
<td>abc</td>
<td>12345</td>
<td>67890</td>
<td>4587</td>
</tr>
<tr>
<td>def</td>
<td>54321</td>
<td>09876</td>
<td>5648</td>
</tr>
</table>
<h2>Links Examples<h2>
<a href="xyz.com" > Click Here</a><br>
<a href="abc.com"> Click me</a><br>
<a href="pqr.com"> click on </a><br>
<a href="mkr.com">Click now</a>
</body>
</html>
Note :- Save this file with .html extention and use any image in the html page make sure name and path is chage for your image.
Thank you!