You are on page 1of 10

Institute of Engineering and Management

Index
Assignment 1
Assignment 2
Assignment 3
Assignment 4

Name: Kirit Sankar Gupta

Page 3
Page 5-6
Page 8
Page 10

Roll: 28

Year: 4th

Institute of Engineering and Management

Name: Kirit Sankar Gupta

Roll: 28

Department: Information Technology


Semester: 7th

Subject: Multimedia

Assigment: About Me

Name: Kirit Sankar Gupta

Roll: 28

Year: 4th

Institute of Engineering and Management


Assignment 1: Write an About Me page using HTML, which includes a picture
and a description about yourself.
HTML Code:
<HEAD>
<TITLE>About Me</TITLE>
</HEAD>
<BODY BGCOLOR="WHITE">
<CENTER>
<H1>A Simple About Me Page</H1>
<IMG SRC="ksg.jpeg">
<H4>By Kirit Sankar Gupta</H4>
</CENTER>
This page has some details about me:<br>
Name: Kirit Sankar Gupta<br>
Age: 21<br>
College: Institute of Engineering and Management<br>
Department: Information Technology<br>
</body>

Output

Name: Kirit Sankar Gupta

Roll: 28

Year: 4th

Institute of Engineering and Management

Name: Kirit Sankar Gupta

Roll: 28

Department: Information Technology


Semester: 7th

Subject: Time Table

Assigment: About Me

Name: Kirit Sankar Gupta

Roll: 28

Year: 4th

Institute of Engineering and Management


Assignment 2: Create an HTML Table, which prints the college time-table, and
utilizing colspan and rowspan.
HTML Code:
<table class="table" table border=2>
<tr class="firstrow">
<th>TIME</th>
<th>TUESDAY</th>
<th>WED</th>
<th>THURS</th>
<th>FRI</th>
<th>SAT</th></tr>
<tr><td>9:20-10</td>
<td>INTERNET TECHNOLOGY</td>
<td>MULTIMEDIA</td>
<td>GD</td>
<td>ECOMMERCE</td>
<td>LAB</td></tr>
<tr><td>10-11:20</td>
<td rowspan=2>MULTIMEDIA</td>
<td rowspan=2>GD</td>
<td rowspan=2>INTERNET TECHNOLOGY</td>
<td rowspan=2>ECOMMERCE</td>
<td rowspan=2>SOFTSKILL</td></tr>
<tr><td>11:20-12</td>

<tr><td>12.00-12.50</td>
<td colspan=5>BREAK</td>
<tr><td>12.50-1:40</td>
<td>INTERNET TECHNOLOGY</td>
<td>MULTIMEDIA</td>
<td>GD</td>
<td rowspan=2>ECOMMERCE</td>
<td>LAB</td></tr>
<tr><td>1.40-2.30</td>
<td>MULTIMEDIA</td>
<td>GD</td>
<td>INTERNET TECHNOLOGY</td>
<td>SOFTSKILL</td></tr>
</table>

Name: Kirit Sankar Gupta

Roll: 28

Year: 4th

Institute of Engineering and Management


Output

Name: Kirit Sankar Gupta

Roll: 28

Year: 4th

Institute of Engineering and Management

Name: Kirit Sankar Gupta

Roll: 28

Department: Information Technology


Semester: 7th

Subject: Frame-set

Assigment: Time-Table

Name: Kirit Sankar Gupta

Roll: 28

Year: 4th

Institute of Engineering and Management


Assignment 3: Using framesets, display 3 different web-pages in a single page in
HTML.
HTML Code:
<frameset rows="35%,*">
<frame src="aboutme.html">
<frameset cols="35%,*">
<frame src="form.html">
<frame src="table.html">
</frameset>
Output

Name: Kirit Sankar Gupta

Roll: 28

Year: 4th

Institute of Engineering and Management

Name: Kirit Sankar Gupta

Roll: 28

Department: Information Technology


Semester: 7th

Subject: Multimedia

Assigment: Form

Name: Kirit Sankar Gupta

Roll: 28

Year: 4th

Institute of Engineering and Management


Assignment 4: Create a form for the inputting of student data.
HTML Code
<form name="input" action="demo_form_action.asp" method="get">
First name: <input type="text" name="firstname"><br>
Last name: <input type="text" name="lastname"><br><br>
1st Semester GPA: <input type="text" name="gpa1"><br>
2nd Semester GPA: <input type="text" name="gpa2"><br>
3rd Semester GPA: <input type="text" name="gpa3"><br>
4th Semester GPA: <input type="text" name="gpa4"><br><br>
Password: <input type="password" name="passwd"><br>
<input type="radio" name="sex" value="M">Male<br>
<input type="radio" name="sex" value="F">Female<br>
<input type="submit" value="Submit">
</form>
Output

Name: Kirit Sankar Gupta

Roll: 28

Year: 4th

You might also like