-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathsite_map.php
executable file
·39 lines (33 loc) · 1.04 KB
/
site_map.php
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="includes/main.css" type="text/css" />
<title>E-Learning: Site Map</title>
<style type="text/css">
<!--
.style1 {color: #FFFFFF}
-->
</style>
</head>
<body>
<?php include ("includes/top_line.php"); ?>
<?php include ("includes/main_menu.php"); ?>
<div id="mid">
<img src="images/Ichalkarnji.jpg"/>
</div>
<div id="text">
<b>Site Map</b>
</div>
<div id="text">
<p align="center"><a href="index.php">Home</a></p>
<p align="center"><a href="aboutelearning.php">About E-Learning</a></p>
<p align="center"><a href="signin.php">Sign In</a></p>
<p align="center"><a href="signup.php">Sign Up</a></p>
<p align="center"><a href="contactus.php">Contact Us</a></p>
</div>
<div id="line">
</div>
<?php include ("includes/bottom_line.php"); ?>
</body>
</html>