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

IP Assig.e

The document is an assignment for Internet programming at Injibara University, detailing a group project by third-year Information Technology students. It includes a list of group members and their IDs, followed by an HTML code example that creates a table with a yellow background displaying student records. The assignment is submitted to an instructor named Bitew M.

Uploaded by

nahit533
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
10 views4 pages

IP Assig.e

The document is an assignment for Internet programming at Injibara University, detailing a group project by third-year Information Technology students. It includes a list of group members and their IDs, followed by an HTML code example that creates a table with a yellow background displaying student records. The assignment is submitted to an instructor named Bitew M.

Uploaded by

nahit533
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

INJIBARA UNIVERSITY

College of Engineering and Technology


Department of Information Technology
Group -2 Third year Section: B
Internet programming Assignment
Group members
No. Name Sex Id
1 Ermeyas Muluken M 0732
2 Engidayehu Mulat M 0728
3 Enyew Welelaw M 0729
4 Enyew Muluye M 0730
5 Estibel Mitku M 0734
6 Esubalew Yeshane M 0736
7 Esubalew Nega M 0735
8 Elsabet Asmare F 0720
9 Emebet Azale F 0722
10 Ephrem Abeje M 0731

Submitted to:- Bitew M .(Msc.)

1|Page
I. Internet programing group Assignment for IT Summer Students(15%)
1. Write the HTML code that displays the following table output with background
color =Yellow .

Answer:-
<!DOCTYPE html>
<html>
<head>
<style>
table {
width: 60%;
border-collapse: collapse;
background-color: yellow;
}
table, th, td {
border: 1px solid black;
}
th {
background-color: yellow;
padding: 10px;
text-align: center;
}
td {
background-color: yellow;
padding: 10px;
text-align: center;
}
2|Page
</style>
</head>
<body>
<table>
<tr>
<th colspan="5">Students Record</th>
</tr>
<tr>
<th>Name</th>
<th>Phone number</th>
<th>Address</th>
<th>Department</th>
<th>College</th>
</tr>
<tr>
<td>Alemu</td>
<td>0933669945</td>
<td>Injibara</td>
<td>IT</td>
<td>CET</td>
</tr>
<tr>
<td>Tsion</td>
<td>0944558855</td>
<td>Dangila</td>
<td>CS</td>
<td></td>
</tr>
<tr>
<td>Admasu</td>
<td>0922773365</td>
<td>Chagni</td>
<td>Maths</td>
<td>CNCS</td>
</tr>
<tr>
<td>Felegush</td>
<td>0999335575</td>
<td>BahirDar</td>
<td>Law</td>
<td>SLAW</td>
3|Page
</tr>
</table>
</body>
</html

Out put

4|Page

You might also like