-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontent.html
94 lines (74 loc) · 1.58 KB
/
content.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<html>
<head>
<meta charset="utf-8">
<title> Content </title>
<style type="text/css">
* {
margin: 0;
padding: 0;
}
body {
font-family: "Trebuchet MS", Helvetica, Sans-Serif;
font-size: 14px;
}
a {
text-decoration: none;
color: white;
}
a:hover {
color: red;
}
#menu {
margin-left: 30px;
}
#menu a {
display: block;
width: 140px;
}
#menu ul {
padding-top: 5px;
}
#menu li {
float: down;
position: relative;
padding: 3px 0;
text-align: left;
}
#menu ul.sub-menu {
display: none;
position: left;
top: 20px;
padding: 10px;
background-color:black;
}
#menu ul.sub-menu li {
text-align: left;
}
#menu li:hover ul.sub-menu {
display: block;
border: 5px solid #ececec;
}
</style>
</head>
<body bgcolor="rainbow">
<div id="menu">
<ul>
<caption><b> ConTent </b></caption>
<li><a href="Tech-World.html" target=_top>Home</a></li>
<li><a href="main_sub.html#history" target="main_sub"><b>History</b></a></li>
<li><a href="main_sub.html#types" target="main_sub">Types of computers</a>
<ul class="sub-menu">
<li><a href="Personal_CompuTers.html"target="main_sub">PersonalComputer</a></li>
<li><a href="main_sub.html#mini" target="main_sub">Minicomputer</a></li>
<li><a href="Workstation.html" target="main_sub">Workstation</a></li>
<li><a href="supercmp.HTML" TARGET="main_sub">Supercomputer and Mainframe</a></li>
</ul>
</li>
<li><a href="#">Contact</a>
<ul class="sub-menu">
<li><a href="#">E-mail Us</a></li>
<li><a href="#">Use Our Contact Form</a></li>
</ul>
</li>
</body>
</html>