0% found this document useful (0 votes)
27 views5 pages

IP Ass

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 PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
27 views5 pages

IP Ass

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 PDF, TXT or read online on Scribd
You are on page 1/ 5

INJIBARA UNIVERSITY

College of Engineering and Technology


Department of Information Technology
Third year Section: B
Name: Bitew
GerbawDinberu IDNO.ID
Tarekegn NCSS/0700/13
NO:NCSS 0749/13
Submitted to: Bitew M.(Msc)

1|Page
II. Internet programing individual Assignment for IT Summer Students (15%)
1. Write the HTML code that displays the following user interface using frameset html
tag as indicated from the given below (A.html, B.html, C.html, D.html and E.html)

Frame1.html
<!DOCTYPE html>
<html>
<head>
<title>Frameset Example</title>
</head>
<frameset rows="100px, *, 50px" border="5">
<!-- Top Navigation Frame -->
<frame src="B.html" name="topFrame" scrolling="no" noresize>
<frameset cols="100px, *, 100px" border="4">
<!-- Left Frame -->
<frame src="A.html" name="leftFrame" noresize>
<!-- Main Content Frame -->
<frame src="D.html" name="mainFrame">
<!-- Right Frame -->
<frame src="C.html" name="rightFrame" noresize>

2|Page
</frameset>
<!-- Footer Frame -->
<frame src="E.html" name="bottomFrame" scrolling="no" noresize>
</frameset>
</html>
A.html
<!DOCTYPE html>
<html>
<head>
<title>Left</title>
</head>
<body bgcolor="gray">
</body>
</html>
B.html
<!DOCTYPE html>
<html>
<head>
<title>Navigation</title>
</head>
<body bgcolor="lightblue">
<br>
<br>
<br>
<br>
<div >
&nbsp &nbsp &nbsp&nbsp &nbsp &nbsp &nbsp&nbsp &nbsp &nbsp
&nbsp&nbsp &nbsp &nbsp &nbsp&nbsp &nbsp &nbsp &nbsp&nbsp &nbsp &nbsp
&nbsp&nbsp &nbsp &nbsp &nbsp&nbsp &nbsp &nbsp &nbsp&nbsp
<a href="home.html" target="mainFrame">Home</a>&nbsp &nbsp &nbsp&nbsp
&nbsp &nbsp &nbsp&nbsp
<a href="about.html" target="mainFrame">About Us</a> &nbsp &nbsp
&nbsp&nbsp &nbsp &nbsp &nbsp&nbsp
<a href="contact.html" target="mainFrame">Contact Us</a> &nbsp &nbsp
&nbsp&nbsp &nbsp &nbsp &nbsp&nbsp
<a href="gallery.html" target="mainFrame">Gallery</a> &nbsp &nbsp
&nbsp&nbsp &nbsp &nbsp &nbsp&nbsp
<a href="services.html" target="mainFrame">Services</a>
</div>
</body>

3|Page
</html>
C.html
<!DOCTYPE html>
<html>
<head>
<title>Right</title>
</head>
<body bgcolor="#12bb34">
<br>
<br>
<div style="text-align: center;">
</div>
</body>
</html>
D.html
<!DOCTYPE html>
<html>
<head>
<title>Body</title>
</head>
<body bgcolor="yellow">
<br>
<br>
<div style="text-align: center;">
</div>
</body>
</html>
E.html
<!DOCTYPE html>
<html>
<head>
<title>bottom</title>
</head>
<body bgcolor="pink">
<div
<p style="text-align: center;"><b>Well Come to Injibara University web Site</b></p>
</div>
</body>
</html>

4|Page
Out put

5|Page

You might also like