0% found this document useful (0 votes)
2 views2 pages

HTML 1 & 2 Programs

The document contains two HTML programs: the first is a study timetable outlining daily study and college timings for each day of the week, while the second is a form for collecting student data including personal and contact information. The timetable emphasizes structured study hours, and the student data form allows for input of essential details such as names, mobile number, and email. Both sections are designed for educational purposes.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views2 pages

HTML 1 & 2 Programs

The document contains two HTML programs: the first is a study timetable outlining daily study and college timings for each day of the week, while the second is a form for collecting student data including personal and contact information. The timetable emphasizes structured study hours, and the student data form allows for input of essential details such as names, mobile number, and email. Both sections are designed for educational purposes.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Program – 21

TIME-TABLE
<html>
<head>
<title>Table</title>
</head>
<body bgcolor="pink">
<center>
<h1>MY STUDY TIME TABLE</h1>
</center>
<center><table border=5px bgcolor="orange" height=400px width=800px><tr><th>DAY</th>
<th>Morning study time</th>
<th>College timings</th>
<th>Evening study time</th>
<th>Question paper solving</th>
</tr><tr><td>MONDAY</th><td>5:00 to 6:30</td><td>8:30 to 4:00</td><td>6:00 to 8:30</td><td>9:00 to 10:30</td></tr>
<tr><td>TUESDAY</th><td>5:00 to 6:30</td><td>8:30 to 4:00</td><td>6:00 to 8:30</td><td>9:00 to 10:30</td></tr>
<tr><td>WEDNESDAY</th><td>5:00 to 6:30</td><td>8:30 to 4:00</td><td>6:00 to 7:30</td><td>9:30 to 10:30</td></tr>
<tr><td>THURSDAY</th><td>5:00 to 6:30</td><td>8:30 to 4:00</td><td>6:00 to 7:30</td><td>9:30 to 10:30</td></tr>
<tr><td>FRIDAY</th><td>5:00 to 6:30</td><td>8:30 to 4:00</td>
<td>6:00 to 7:30</td><td>9:30 to 10:30</td></tr>
<tr><td>SATURDAY</th><td>5:00 to 6:30</td><td>8:30 to 1:00</td><td>5:00 to 7:30</td><td>8:30 to 10:30</td></tr>
</table>
</center>
<marquee direction="left"><h1>All the best!!!</h1>
</marquee>
</body>
</html>
Program – 22
STUDENT DATA
<html>
<head>
<title>Table and form</title></head>
<body><h2 text color=#ff0200>STUDENT'S DATA</h2><table width=700px border=5px><form><tr><td>
<label for="s_name">Student's Name</label></td><td><input type="text" name="s_name" maxlength="50"
size="30"></td></tr><tr><td>
<label for="s_id">Student'sID</label></td><td><input type="text" name="s_id" maxlength="50"
size="30"></td></tr><tr><td><label for="f_name">father's Name</label></td><td><input type="text" name="f_name"
maxlength="50" size="50"></td></tr><tr><td><label for="m_name">Mother's Name</label></td><td><input type="text"
name="m_name" maxlength="50" size="50"></td></tr><tr><td><label for="mob">Mobile number</label></td><td>
<input type="text" name="mob" maxlength="50" size="30"></td></tr>
<tr><td><label for="mail">Email id</label></td><td><input type="text" name="mail" maxlength="50"
size="50"></td></tr><tr><td><input type="Submit" value="Submit form"></td></tr>
</form>
</table>
</body>
</html>

You might also like