-
Notifications
You must be signed in to change notification settings - Fork 0
/
photos.html
128 lines (74 loc) · 3.1 KB
/
photos.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<html>
<head>
<title>my photos</title>
<link rel="stylesheet" type="text/css" href="JORDAN.css">
<style type="text/css">
*{margin: 0;
padding: 0;
font-size:1.03em;
font-family: inherit;}
body{background-color: #eeeeee;}
/* --------- menu--------------*/
.menu{
width: 100%;
background-color :#333333;
color: #ffffff;
height: 60px;
}
.menu #logo {
float: left;
height: 30px;
padding: 15px 30px;
font-size: 1.2em;
line-height: 30px;
}
.menu > ul {
margin: 0;
padding: 0;
float: left;
list-style-type: none;
}
.menu >ul > li{
float: left;
}
.item {
display: inline-block;
padding: 15px 20px;
line-height: 30px;
color: aliceblue;
text-decoration: none;
}
.item:hover {
background-color: #ff0055;
}
#rmenu{float: right;}
.div{font-family: fantasy; color: #eee;font-size:18px}
.div>a:hover{background-color: #ff0055;
text-decoration:underline;
color: #eee;}
</style>
</head>
<frameset cols="50%,50%">
<frame name="A" src="photosA.HTML" >
<frame name="B" src="photoB.HTML" >
<noframeset>
<body style="background-color: #eee;">
<nav class="menu">
<div id="logo">
<p style="color: #ff0055; font-size:40px; ">Kings</p></div>
<ul id="rmenu">
<li ><a class="item" href="JORDAN.html" >About</a></li>
<li><a class="item" href="kings.html" >kings</a></li>
<li><a class="item" href="History.html" >History</a></li>
<li><a class="item" href="Cities.html" >Cities</a></li>
<li ><a class="item" href="photos.html" >photos</a></li>
</ul>
</nav>
<div class="div" style="background-color:#333; float:bottom; padding:5px ; margin: 15px; height: 25%; text-align: justify; ">
<center> <p style="font-family: cursive; font-size: 15px; margin:25px; ">if ypu want to contact me:</p> <a href="mailto:[email protected]"><img src="outlook.png"> </a></center>
<br>
<center><p style="font-family: cursive; font-size: 15px">All rights reserved <strong style="font-family: cursive; font-size: 20px">©</strong></p></center>
</div>
</body>
</noframeset> </frameset>
</html>