-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmenu.html
70 lines (63 loc) · 2.24 KB
/
menu.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title></title>
<link rel="stylesheet" type="text/css" href="css/WesleyStyleSheet.css">
<style type="text/css">
table {
margin: 0;
padding: 0;
border: 0;
}
.container {
position: relative;
width: 100%;
}
.left {
position: relative;
left: 10px;
width: 700px;
}
.pos_justify {
position: relative;
text-align: justify;
left: 10px;
width: 600px;
}
/* a:link {
color: blue;
}
a:visited {
color: purple;
} */
.pos_right {
position: relative;
left: 10px;
}
</style>
</head>
<body>
<table style="background: #B3B6C9;width:600px;height:110px;border:0">
<tr >
<td >
<p class="left">
<a href="index.html" target="_top">HOME </a>   |  
<a href="sundaymorning.html" target="_top">SUNDAY MORNING</a>   |  
<a href="directions.html" target="_top">DIRECTIONS</a>   |  
<a href="missions.html" target="_top">MISSIONS</a>   |  
<a href="calendar.html " target="_top">CALENDAR</a>   |  
<a href="contact.html" target="_top">CONTACT</a>  
</p>
<p class="left">
<a href="whoweare.html" target="_top">WHO WE ARE</a>   |  
<a href="staff.html" target="_top">STAFF</a>   |  
<a href="history.html" target="_top">HISTORY</a>   |  
<a href="playschool.html" target="_top">PLAYSCHOOL</a>   |  
<a href="umwomen.html" target="_top">UNITED METHODIST WOMEN</a>
</p>
</td>
</tr>
</table>
</body>
</html>