Page 412 - Webapplication11_C11_Flipbook
P. 412
<li>Chowmein</li>
<li>Burger</li>
</ol>
<img src="chowmein.jpg" height=15% height=15% alt="My favourite food">
</body>
</html>
Output:
13. Create a table that displays information about a series of books. Include columns for the book title, author, and
publication date. Use appropriate HTML tags and attributes to format the table.
Ans. <html>
<head>
<title>Books</title>
</head>
<body text=blue>
<table border=2 bordercolor=red>
<caption> BOOKS IN MY ROOM </caption>
<thead>
<tr>
<th>Title</th>
<th>Author</th>
<th>Publication Date</th>
</tr>
</thead>
<tr>
<td>Harry Potter and the Deathly Hallows</td>
<td>J. K. Rowling</td>
<td>July 21, 2007</td>
</tr>
<tr>
410 Touchpad Web Applications-XI

