-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.php
More file actions
39 lines (34 loc) · 1.1 KB
/
Copy pathhome.php
File metadata and controls
39 lines (34 loc) · 1.1 KB
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>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>AlumSphere - Home</title>
<link rel="stylesheet" href="style5.css" />
</head>
<body>
<header>
<div class="header-left">
<img src="logo5.png" alt="University Logo" class="logo" />
<div class="site-info">
<h1>AlumSphere</h1>
<p>University of Vavuniya</p>
</div>
</div>
<div class="header-right">
<a href="signup.php" class="btn-tab">User Login</a>
<a href="admin_login.php" class="btn-tab">Admin Login</a>
</div>
</header>
<main>
<section class="home-info">
<h2>Welcome to AlumSphere</h2>
<p>Your gateway to connect with alumni and manage events seamlessly.</p>
<p>Stay updated with university happenings, alumni stories, and upcoming events.</p>
</section>
</main>
<footer class="footer">
<p>© <?php echo date("Y"); ?> AlumSphere | All Rights Reserved | Contact Us:<a href="mailto:alumsphere@vau.ac.lk" style="color: #e3f2fd;">alumsphere@vau.ac.lk</a>
</p>
</footer>
</body>
</html>