Make a series of HTML files that are all on a relevant to your project. Your pro
ID: 3843955 • Letter: M
Question
Make a series of HTML files that are all on a relevant to your project. Your project can be on any topic of your choice.
You should include the following:
A frameset.
An imagemap.
A form that sends data to a mailto link.
A page with anchors
A table. Your table must include a least one instance of a COLSPAN or ROWSPAN attribute. Your table should also include some graphic images.
A nested list
Links to some real, relevant websites.
An embedded video (find something on YouTube, see directions there for pasting in links to your chosen video).
Merely fulfilling all criteria will get you an 80. To get a 100, you must show more effort.
Upload your work to your directory. The start page should be named index.htm
Any text or graphics that you get from elsewhere should be cited appropriately.
Explanation / Answer
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<!--Anchor-->
<a href="https://www.goole.com">Visit google.com!</a>
<!--embedded video-->
<iframe width="420" height="315"
src="https://www.youtube.com/embed/vpTDrn-6pJY">
</iframe>
<!--COLSPAN & ROWSPAN-->
<table>
<tr>
<th>Subject</th>
<th>Marks</th>
</tr>
<tr>
<td>Html</td>
<td>90</td>
<td rowspan="2">Passed</td>
</tr>
<tr>
<td>css</td>
<td>80</td>
</tr>
<tr>
<td colspan="2">Total:170</td>
</tr>
</table>
<!--Nested list-->
<ul>
<li>Coffee</li>
<li>Tea
<ul>
<li>Black tea</li>
<li>Green tea</li>
</ul>
</li>
<li>Milk</li>
</ul>
<!--Mail-->
<form action="mailto:milkto.com" method="post" enctype="text/plain">
Name:<br>
<input type="text" name="name"><br>
E-mail:<br>
<input type="text" name="mail"><br>
Comment:<br>
<input type="text" name="comment" size="100"><br><br>
<input type="submit" value="Send">
</form>
<!--IMAGE MAP-->
<img src="#" width="145" height="126" alt="image" usemap="#imagemap"><!--link any image-->
<map name="imagemap">
<area shape="rect" coords="0,0,82,126" href="#"><!--enter link-->
<area shape="circle" coords="90,58,3" href="#"><!--enter link-->
<area shape="circle" coords="124,58,8" href="#"><!--enter link-->
</map>
</body>
</html>
Frameset:-
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.