Sie sind auf Seite 1von 12

1. Create an HTML page to display B.E. 3rd year sem-1 marks of a student in tabular form.

<html>
<label><title>marks of a student</title></label>
<body bgcolor="pink">
<center>
<p>
<b>Name</b>:XYZ<br/>
<b>Course</b>:CSE<br/>
<b>Exam</b>:B.E. 3/4 sem-1<br/>
<b>Roll no.</b>:11111111111<br/>
<br/><br/<br/>
<table border="5">
<caption>Marks of a student</caption>
<tr>
<th>Subjects</th>
<th>Maximum marks</th>
<th>Obtained marks</th>
<th>Internal marks</th>
<th>Total</th>
</tr>
<tr><th>Database management systems</th>
<td>75</td>
<td>70</td>
<td>24</td>
<td>94</td>
</tr>
<tr><th>Computer networks</th>
<td>75</td>
<td>70</td>
<td>24</td>
<td>94</td>
</tr>
<tr><th>Micro processors</th>
<td>75</td>
<td>70</td>
<td>24</td>
<td>94</td>
1604-09-733-003

</tr>
<tr><th>Software engineering</th>
<td>75</td>
<td>70</td>
<td>24</td>
<td>94</td></tr>
<tr><th>Managerial economics</th>
<td>75</td>
<td>70</td>
<td>24</td>
<td>94</td></tr>
<tr><th>DBMS lab</th>
<td>50</td>
<td>49</td>
<td>24</td>
<td>73</td></tr>
<tr><th>MP lab</th>
<td>50</td>
<td>49</td>
<td>24</td>
<td>73</td></tr>
<tr><th>CN lab</th>
<td>50</td>
<td>49</td>
<td>24</td>
<td>73</td></tr>
</table>
</p>
</center>
</body>
</html>

1604-09-733-003

1604-09-733-003

2. Create a home page for your college. The home page should have 3 frames. First frame
should provide brief introduction about college. Second frame should list the courses
offered by your college and third frame should list the events that take place in your college.

Frames.html

<html>
<title>Muffakhamjah College of Engineering And Technology</title>
<frameset cols="*,*,*">
<frame src="a.html">
<frame src="courses.html">
<frame src="c.html">
</frameset>
</html>
a.html
<html>
<head>
<title>About MJCET</title></head>
<body bgcolor="DC4488">
<p>
MJCET is a Part of Sultan Ul Uloom Educational Society..
<br/>
It is O.U affilated.
<br/>
No.1 college in the world.......:) :) :)
</p>
</body>
</html>

b.html
<html>
<title>Courses Offered</title>
<body bgcolor="yellow">
1604-09-733-003

<p>
<center><br/><br/>
<caption><b>Department Of Computer Science And Engineering</b></caption></br>
<caption><b>University College Of Engineers</b></caption></br>
<caption><b>Osmania University</b></caption></br>
<table border="5">
<caption><b>Courses</b></caption>
<tr>
<th>Courses Offered</th>
<th>Intake</th>
<th>Year of Commencement</th>
</tr>
<tr>
<th><a href="BE.html">BE</a></th>
<td>60</td>
<td>1985</td>
</tr>
<tr>
<th><a href="MCA.html">MCA</a></th>
<td>60</td>
<td>1991</td>
</tr>
<tr>
<th><a href="MSIT.html">MSIT</a></th>
<td>30</td>
<td>2010</td>
<tr>
<th><a href="MTECH.html">M.Tech</a></th>
<td>30</td>
<td>1993</td>
</tr>
</table>
</center>
</p>
</body>
</head>
1604-09-733-003

</html>
c.html
<html>
<title>Events</title>
<body bgcolor="orange">
<p>
Cynosure
<br/>
Adsophos
<br/>
</p>
</body>
</html>

1604-09-733-003

3. Create a HTML Page to create a third year examination timetable.

<html>
<title>Time Table</title>
<body bgcolor="DC5555">
<p>
<marquee><b>CSE</b></marquee>
<center>
</br></br>
<caption><h1><b>Osmania University</b></h1></caption></br></br>
<caption><h2><b>B.E 3/4 sem-1 timetable</b></h2></caption></br></br>
<h3><table border="7" cellspacing="5" cellpadding="2">
<tr>
<th colspan="2">Time : 10:00 to 1:00</th>
</tr>
<tr>
<th>Subjects</th>
<th>Date</th>
</tr>
<tr>
<th>DBMS</th>
<td>13/12/2011</td>
</tr>
<tr>
<th>CN</th>
<td>16/12/2011</td>
</tr>
<tr>
<th>MP</th>
<td>20/12/2011</td>
</tr>
<tr>
<th>SE</th>
<td>23/12/2011</td>
</tr>
<tr>
<th>MEA</th>
1604-09-733-003

<td>30/12/2011</td>
</tr>
</table><h3>
</center>
</p>
</body>
</html>

1604-09-733-003

4. Create a html page with following contents.


Department of Computer Science & Engineering
University College of Engineers
Osmania University
Courses
Courses offered
B.E
MCA
MSIT
M.Tech

Intake
60
60
30
30

Year of commencement
1985
1991
2010
1993

Each course should be a hyperlink.

<html>
<title>Courses Offered</title>
<body bgcolor="yellow">
<p>
<center><br/><br/>
<caption><b>Department Of Computer Science And Engineering</b></caption></br>
<caption><b>University College Of Engineers</b></caption></br>
<caption><b>Osmania University</b></caption></br>
<table border="5">
<caption><b>Courses</b></caption>
<tr>
<th>Courses Offered</th>
<th>Intake</th>
<th>Year of Commencement</th>
</tr>
<tr>
<th><a href="BE.html">BE</a></th>
<td>60</td>
<td>1985</td>
</tr>
<tr>
<th><a href="MCA.html">MCA</a></th>
1604-09-733-003

<td>60</td>
<td>1991</td>
</tr>
<tr>
<th><a href="MSIT.html">MSIT</a></th>
<td>30</td>
<td>2010</td>
<tr>
<th><a href="MTECH.html">M.Tech</a></th>
<td>30</td>
<td>1993</td>
</tr>
</table>
</center>
</p>
</body>
</head>
</html>

1604-09-733-003

5. Create a home page for yourself apart from other information. The page should have a table
providing academic record in a tabular form as shown

Exam passed
SSC
Intermediate
Degree

Year of study

Duration

<html>
<title>My Homepage</title>
<body bgcolor="EI13">
<p>
<center>
</br></br>
<caption><b>Name</b>:xxxxxxx</caption></br>
<caption><b>DOB</b>:05/12/1991</caption></br>
<caption><b>Father's name</b>:zzzzzzz</caption>
</br></br></br>
<table border="5">
<tr>
<th>Exam passed</th>
<th>Year of Study</th>
<th>Duration</th>
<th>Institute of Study</th>
</tr>
<tr>
<th>SSC</th>
<td>2007</td>
<td>1 year</td>
<td><a href="ths.html">Tulasi High School</a></td>
</tr>
<tr>
<th>Intermediate</th>
<td>2009</td>
<td>2 years</td>
<td><a href="ch.html">Chaitanya Junior College</a></td>
</tr>
<tr>
1604-09-733-003

Institution of study

<th>Degree(B.E)</th>
<td>2013</td>
<td>4 years</td>
<td><a href="mjcet.html">Muffakhamjah College Of Engineering And Technology</a></td>
</tr>
</table>
</center>
</p>
</body>
</title>
</html>

1604-09-733-003

Das könnte Ihnen auch gefallen