-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathlinks.html
72 lines (72 loc) · 1.76 KB
/
links.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<head> <title> Links </title>
<style>
div {
margin-top:10px;
margin-left:10px;
border: 2px solid black;
background-color:lightyellow;
padding:10px;
float:left;
}
a {
text-decoration:none;
}
a:hover {
text-decoration:underline;
}
a:link {
color:red;
}
a:visited {
color:green;
}
a:active {
color:yellow;
}
</style>
<script>
function chat() {
prompt("Your Message:");
}
</script>
</head>
<body>
<header align="center">
<font size="5"> Site Map </font>
</header>
<div>
<h3> Our Sites </h3>
<ol>
<li> <a href="http://www.amazon.in"> Amazon Shopping </a> </li>
<li> <a href="http://www.flipkart.com"> Flipkart </a> </li>
</ol>
</div>
<div>
<h3> Our Pages </h3>
<ol>
<li><a href="login.html" target="frameBody"> Login </a> </li>
<li><a href="tutorial.html" target="frameBody">Tutorial</a> </li>
</ol>
</div>
<div>
<h3> Contact Us </h3>
<ol>
<li> <a href="javascript:chat()"> Chat with HR </a> </li>
<li> <a href="mailto:[email protected]"> Email Us </a> </li>
</ol>
</div>
<div>
<h3> Documents </h3>
<ol>
<li> <a href="Resources/cssdemo.pdf"> CSS Tutorial </a> </li>
<li><a href="Resources/collections.doc"> Collections </a> </li>
<li> <a href="javascript:window.open('Images/tv.jpg','TV','width=500 height=300')"> Samsung TV </a> </li>
</ol>
</div>
<section>
<iframe style="border-style:none" name="frameBody" width="600" height="300"> </iframe>
</section>
</body>
</html>