0% found this document useful (0 votes)
13 views4 pages

HTML PDF

The document contains two HTML programs: the first creates a study timetable for PU College Udupi, detailing study times for various subjects throughout the week, and includes a marquee message wishing students good luck. The second program is a student application form with fields for personal information, education, and course selection, along with submit and cancel buttons. Both programs utilize HTML table structures for organization and layout.

Uploaded by

menx78200
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)
13 views4 pages

HTML PDF

The document contains two HTML programs: the first creates a study timetable for PU College Udupi, detailing study times for various subjects throughout the week, and includes a marquee message wishing students good luck. The second program is a student application form with fields for personal information, education, and course selection, along with submit and cancel buttons. Both programs utilize HTML table structures for organization and layout.

Uploaded by

menx78200
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
You are on page 1/ 4

1.

WRITE A HTML PROGRAM TO CREATE A STUDY TIME TABLE

<HTML>
<HEAD>
<TITLE> html1 </TITLE>
</HEAD>
<BODY>
<CENTER> <H1> PU COLLEGE UDUPI </H1>
<H4>STUDY TIME TABLE </H4>

<TABLE BORDER=1>
<TR>
<TH> DAYS </TH>
<TH> SUBJECTS </TH>
<TH> MORNING STUDY TIME </TH>
<TH> EVENING STUDY TIME </TH>
<TH> RIVISION </TH>
</TR>

<TR>
<TD> MONDAY </TD>
<TD> KANNADA</TD>
<TD> 5:00 - 6.30 A.M </TD>
<TD> 6:00 - 8:30 P.M </TD>
<TD> 9:00 - 11:00 P.M </TD>
</TR>

<TR>
<TD>TUESDAY</TD>
<TD> ENGLISH</TD>
<TD> 5:00 - 6.30 A.M </TD>
<TD> 6:00 - 8:30 P.M </TD>
<TD> 9:00 - 11:00 P.M </TD>
</TR>

<TR>
<TD> WEDNESDAY </TD>
<TD> COMPUTER</TD>
<TD> 5:00 - 6.30 A.M </TD>
<TD> 6:00 - 8:30 P.M </TD>
<TD> 9:00 - 11:00 P.M </TD>
</TR>

<TR>
<TD> THRUSDAY </TD>
<TD> PHYSICS </TD>
<TD> 5:00 - 6.30 A.M </TD>
<TD> 6:00 - 8:30 P.M </TD>
<TD> 9:00 - 11:00 P.M </TD>
</TR>
<TR>
<TD>FRIDAY </TD>
<TD> CHEMISTRY</TD>
<TD> 5:00 - 6.30 A.M </TD>
<TD> 6:00 - 8:30 P.M </TD>
<TD> 9:00 - 11:00 P.M </TD>
</TR>

<TR>
<TD> SATURDAY </TD>
<TD> MATHS</TD>
<TD> 5:00 - 6.30 A.M </TD>
<TD> 6:00 - 8:30 P.M </TD>
<TD> 9:00 - 11:00 P.M </TD>
</TR>
</TABLE>

<MARQUEE DIRECTION="right"> ALL THE BEST!!!!!!</MARQUEE>


</CENTER>
</BODY>
</HTML>

PU COLLEGE UDUPI
STUDY TIME TABLE

MORNING EVENIGNING
DAYS SUBJECTS RIVISION
STUDY TIME STUDY TIME
MONDAY KANNADA 5:00 - 6.30 A.M 6:00 - 8:30 P.M 9:00 - 11:00 P.M
TUESDAY ENGLISH 5:00 - 6.30 A.M 6:00 - 8:30 P.M 9:00 - 11:00 P.M
WEDNESDAY COMPUTER 5:00 - 6.30 A.M 6:00 - 8:30 P.M 9:00 - 11:00 P.M
THRUSDAY PHYSICS 5:00 - 6.30 A.M 6:00 - 8:30 P.M 9:00 - 11:00 P.M
FRIDAY CHEMISTRY 5:00 - 6.30 A.M 6:00 - 8:30 P.M 9:00 - 11:00 P.M
SATURDAY MATHS 5:00 - 6.30 A.M 6:00 - 8:30 P.M 9:00 - 11:00 P.M
2.Create an HTML program with table and Form.

<html>
<body>
<form name="htmlform" method="post"action="html_form.php">
<b> STUDENT APPLICATION FORM</b>
<table border="1">

<tr>
<td>Student name:</td>
<td> <input type="text" name="sname"> </td>
</tr>

<tr>
<td>Father name:</td>
<td> <input type="text" name="fname"> </td>
</tr>

<tr>
<td>Date of birth:</td>
<td> <input type="text" name="dob"> </td>
</tr>

<tr>
<td>Gender:</td>
<td>
<input type="radio" name="gender"value="male"> male
<input type="radio" name="gender"value="male"> Female

</td>
</tr>

<tr>
<td>Education:</td>
<td><input type="text" name="edu"></td>
</tr>

<tr>
<td>Percentage of marks:</td>
<td><input type="text" name="per"></td>
</tr>

<tr>
<td>Address:</td>
<td><input type="text" name="add"></td>
</tr>

<tr>
<td>Phone:</td>
<td><input type="text" name="phone"></td>
</tr>
<tr>
<td>Select course:</td>
<td> <select name="drop down">
<option value="pcmb">pcmb</option>
<option value="pcmc">pcmc</option>
<option value="pcme">pcme</option>
</select>
</td>
</tr>

<tr>
<td align="right"> <input type="submit"
value="submit"> </td>
<td align="left"> <input type="button"value="cancel">
</td>
</tr>
</table>
</form>
</body>
</html>

STUDENT APPLICATION FORM


Student name:
Father name:
Date of birth:
Gender: male Female
Education:
Percentage of marks:
Address:
Phone:
Select course: pcmb

submit

You might also like