-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (42 loc) · 1.61 KB
/
Copy pathindex.html
File metadata and controls
45 lines (42 loc) · 1.61 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
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="images\indexicon.svg">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Campus-Connect</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Syne+Mono&display=swap" rel="stylesheet">
<script src="script.js" defer></script>
</head>
<body>
<header>
<nav>
<div style="color: white; font-size: 28px; font-weight: bolder;">Campus Connect</div>
<div class="nav-toggle">☰</div>
<ul class="nav">
<li class="login"><a href="login.html">Login/SignUp</a></li>
</ul>
</nav>
</header>
<main>
<h1 class="welcomemsg">Welcome To SJIT Connect!!</h1>
<div class="options">
<a href="Discussions.html" class="option-card">
<p style="font-size: 40px;">🔥</p>
<h3>Connect & Discuss</h3>
<p>Join trending discussions, share ideas and connect with students.</p>
</a>
<a href="Events.html" class="option-card">
<p style="font-size: 40px;">🎉</p>
<h3>Discover Events</h3>
<p>Never miss out on hackathons, fests, and inter-college competitions happening near you.</p>
</a>
</div>
</main>
<footer>
<p>© 2025 Campus-Connect | All rights reserved.</p>
</footer>
</body>
</html>