-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcontact.html
More file actions
36 lines (33 loc) · 924 Bytes
/
contact.html
File metadata and controls
36 lines (33 loc) · 924 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Contact</title>
<link rel="stylesheet" href="css/home.css">
</head>
<body>
<div id="header">
<div>
<a href="home.html" id="logo"><img src="images/Logo-SUSL.png" alt="Logo-SUSL" height="100px" width="200px"></a>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="login.html">Login</a></li>
<li class="selected"><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
<div align="center">
<h3>Address</h3>
<p>Sabaragamuwa University of Sri Lanka, <br>Belihuloya. <br>70140</p>
<h3>Telephone</h3>
<p> 045 2 280042</p>
<h3>Faculties Telephone</h3>
<p>
Faculty of Social Sciences and Languages - 045-2280087 <br>
Faculty of Agricultural Sciences - 045-2280041 <br>
Faculty of Applied Sciences - 045-3454212 <br>
Faculty of Geomatics - 045-3453009 <br>
Faculty of Management Studies - 045-2280007
</p>
</div>
</body>
</html>