<html>
<head>
<title> Timetable</title>
</head>
<body>
<table border="4px">
<tr>
<th colspan="6"><h1>Timetable</h1></th>
</tr>
<tr>
<th rowspan="6"><h1>Hours</h1></th>
<td>Mon</td>
<td>Tue</td>
<td>Wed</td>
<td>Thurs</td>
<td>Fri</td>
</tr>
<tr>
<td> Science </td>
<td> Maths </td>
<td> Science </td>
<td> Maths </td>
<td> Arts </td>
</tr>
<tr>
<td> Social Science </td>
<td> History </td>
<td> English </td>
<td> Social Science </td>
<td> Sports</td>
</tr>
<tr>
<th colspan="5"><h1>Lunch</h1></th>
</tr>
<tr>
<td> Science </td>
<td> Maths </td>
<td> Science </td>
<td> Maths </td>
<th rowspan="2">Project</th>
</tr>
<tr>
<td> Social Science </td>
<td> History </td>
<td> English </td>
<td> Social Science </td>
</tr>
</table>
</body>
</html>
Answers
Answered by
0
this is a HTML web page
111111111Adarsh:
bahut jyada bakwash
Answered by
2
How to use this file: --------------------- Do the following to work with this file. 1. Save this file an HTML file. Most of the outputs would show the correct output as expected as per the Cheatsheet document. However some may not show you the same out put due to the other tags that are also present in the file. 2. Search for a particular example. Copy a prticular Example code and save it in a separate html file. Note: that every example is will not produce a visible impact. ----------------------------------------------------------------------------------------------------------- <h2>------Ex1-------</h2> <!� Account Summary Section --> <h2>------Ex2-------</h2> <html> </html> <h2>------Ex3-------</h2> <html> <head> </head> </html> <h2>------Ex4-------</h2> <html> <head> <title>Title of the document</title> </head> </html> <title>Title of the document</title> <h2>------Ex5-------</h2> <html> <head> <style type="text/css"> </style> </head> </html> <h2>------Ex6-------</h2> <html> <head> <link rel="stylesheet" type="text/css" href="theme.css" /> </head> </html> <h2>------Ex7-------</h2> <head><basefont color="red" size="5" /></head> <h2>------Ex8-------</h2> <body bgcolor="yellow" background="water.jpg" link="red" alink="yellow" vlink="brown" text="blue"> <h2>------Ex9-------</h2> <h1 align="right">Lecture Notes on HTML programming</h1> <h2>------Ex10-------</h2> <p align="right">These are the notes for HTML programming </p> <h2>------Ex11-------</h2> <hr color="red" align="right" width="50%" noshade="noshade"> <h2>------Ex12-------</h2> <p> This is a <br> wonderful day <br> today</p> <h2>------Ex13-------</h2> This is a <b> wonderful day </b> today <h2>------Ex14-------</h2> This is a <u> wonderful day </u> today <h2>------Ex15-------</h2> <h2>------Ex16-------</h2> <p>Version 2.0 is <s>not yet available!</s> now available!</p> <h2>------Ex17-------</h2> Mahatma Gandhi said: <blockquote> Honesty is the best policy </blockquote> <h2>------Ex18-------</h2> The chemical formula of water is H<sub>2</sub>O. The area of a square is l<sup>2</sup> <h2>------Ex19-------</h2> <pre> My name is Subodh Arora</pre> <h2>------Ex20-------</h2> <abbr title="Shri Ram College of Commerce">SRCC</abbr> is a premier institution on India. <h2>------Ex21-------</h2> <a href=http://www.srcc.edu target="_blank"> SRCC</a><a href=http://www.srcc.edu><img src="srccimage.jpg"</a><a href="mailto:[email protected][email protected]&[email protected]&subject=Hi&body= invited%20to%20a%20big%20summer%20party!">Send mail!</a> <a name="cs"> <h2>------Ex22-------</h2> <img src="srcclogo.gif" alt="Image of SRCC" align="center" border="2" height="50%" weight="50%" usemap="#srccimagemapdef"> <img src="srcclogo.gif" alt="Image of SRCC" align="center" border="2" height="100" weight="200" usemap="#srcc_image_map_def"> <h2>------Ex23-------</h2>
Similar questions