-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.php
46 lines (35 loc) · 1.15 KB
/
main.php
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
<html>
<head>
<title>Address Book</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>
<body>
<div class="containerclass" id="container-top">
<div id="ctext">Address Book</div>
</div>
<div class="containerclass" id="container-left">
<div id="containerlefttext">
Hello and welcome! This is an online address book to maintain contacts.
It is very simple to use so get started.
<br><br><br>
1. <a href="http://localhost:8888/city.php" onmouseover="preview(this.href,'container');">City</a>
<br><br>
2. <a href="http://localhost:8888/country.php" onmouseover="preview(this.href,'container');">Country</a>
<br><br>
3. <a href="http://localhost:8888/index.php" onmouseover="preview(this.href,'container');">Address Book</a>
</div>
</div>
<div id="container">
</div>
<script>
function preview(url,target)
{
clearTimeout(window.ht);
window.ht = setTimeout(function(){
var div = document.getElementById(target);
div.innerHTML = '<iframe style="width:100%;height:100%;" frameborder="0" src="' + url + '" />';
},20);
}
</script>
</body>
</html>