-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (54 loc) · 2.58 KB
/
index.html
File metadata and controls
57 lines (54 loc) · 2.58 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
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" href="assets/logo.PNG" />
<title>AetherCode - Learn. Notes. Clarity.</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Anton&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@600;800&display=swap"
rel="stylesheet" />
<link href="https://cdn.jsdelivr.net/npm/remixicon@4.5.0/fonts/remixicon.css" rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="main">
<div id="page1">
<img src="assets/bg.jpeg" alt="Background Image" style="filter: brightness(0.4); transform: scale(1.1);" />
<div id="page1-content">
<nav class="navbar reveal" style="animation-delay: 0.1s;">
<div class="logo">AetherCode</div>
<ul class="nav-links">
<li><a href="aboutus.html">About Us</a></li>
<li><a href="notes.html">Notes</a></li>
<li><a href="blog.html">Blogs</a></li>
<li><a href="contactus.html">Contact Us</a></li>
</ul>
</nav>
<div class="hero-container"
style="display: flex; align-items: center; justify-content: center; height: 80vh; padding-top: 5rem;">
<div class="glass-card reveal"
style="padding: 4rem; text-align: center; max-width: 900px; animation-delay: 0.3s;">
<h1 style="font-size: 7rem; font-family: 'Anton', sans-serif; line-height: 1; letter-spacing: 5px;">
<span class="highlight">AETHER</span>CODE
</h1>
<h2 style="font-size: 2.5rem; font-family: 'Montserrat', sans-serif; font-weight: 800; margin: 1.5rem 0;">
LEARN. NOTES. CLARITY.
</h2>
<p style="font-size: 1.3rem; color: #ccc; margin-bottom: 2.5rem;">
Empowering students across <span class="highlight">Engineering, Medical, Law, and more</span> with premium
resources for 2026.
</p>
<a href="notes.html" class="btn"
style="padding: 1.2rem 3rem; font-size: 1.2rem; animation: glowPulse 2s infinite;">
Start Learning Now <i class="ri-arrow-right-line"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>