-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
57 lines (29 loc) · 900 Bytes
/
demo.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
frames.html
<html>
<frameset rows="40%,*">
<frame src="header.html" name="frame1">
<frameset cols="40%,*"> <frame src="links.html" name="frame2">
<frame src="Pune.html" name="frame3">
</frameset>
</frameset> </html>
header.html
<html>
<body><h1 align="center"><font color="blue"><u><b>IT Industries in India</b></u></FONT> </H1></BODY>
</HTML>
links.html
<html> <head><title> Frame Example
</title> </head>
<body><b>City</b><br> <ol type="1">
<li><a href="Pune.html"
target="frame3">Pune</A></li><br> <li><a href="b.html"
target="frame3">Mumbai</A></li><br> </ol>
</body>
</html>
Pune.html
<html> <body><h3>Pune</h3> <ul type="disc"><li>Infosys</li>
<li>Persistent</li></ul>
</body> </html>
b.html
<html> <body><h3>Mumbai</h3>
<ul type="disc"><li> ---</li><li>---</li><li>---- </li><li>----</li></ul>
</body> </html>