-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnews.html
executable file
·35 lines (33 loc) · 959 Bytes
/
news.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
<html>
<head>
<title>Village Service Trust</title>
<link rel=StyleSheet href="style.css" title="Contemporary" type="text/css"/>
</head>
<body>
<div id="central">
<div id="header">
</div>
<div id="nav">
<ul>
<li onclick="window.location='index.html'"><a>Home</a></li>
<li onclick="window.location='news.html'" class="active"><a>News</a></li>
<li onclick="window.location='objectives.html'"><a>Objectives</a></li>
<li onclick="window.location='activities.html'"><a>Activities</a></li>
<li onclick="window.location='resources.html'"><a>Resources</a></li>
<li onclick="window.location='contact.html'"><a>Contact</a></li>
</ul>
</div>
<div id="main">
<h1>News</h1>
<p>Test Page</p>
<ul>
<li><p>List 1</p></li>
<li><p>List 2</p></li>
<li><p>List 3</p></li>
</ul>
</div>
<div id="footer">
</div>
</div>
</body>
</html>