-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontactus.html
More file actions
66 lines (63 loc) · 2.73 KB
/
contactus.html
File metadata and controls
66 lines (63 loc) · 2.73 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
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact Us - AetherCode</title>
<link rel="icon" type="image/png" href="assets/logo.PNG" />
<link rel="stylesheet" href="style.css" />
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@600;800&family=Lato:wght@400;700&display=swap"
rel="stylesheet" />
<link href="https://cdn.jsdelivr.net/npm/remixicon@4.5.0/fonts/remixicon.css" rel="stylesheet" />
</head>
<body>
<header class="navbar">
<div class="logo">AetherCode</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<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" class="active">Contact Us</a></li>
</ul>
</header>
<section class="notes-section reveal">
<div class="container">
<div class="blog-hero">
<div class="emoji-tag">👋 Let's Connect</div>
<h1>Contact <span class="highlight">AetherCode</span></h1>
<p class="subtitle" style="color: #ccc; margin-top: 1rem;">Have questions? We're here to help you navigate your
academic journey.</p>
</div>
<div class="split-layout" style="justify-content: center; margin-top: 4rem;">
<div class="layout-col reveal" style="animation-delay: 0.2s; max-width: 600px;">
<div class="note-card" style="margin-bottom: 1.5rem; display: flex; align-items: center; gap: 2rem;">
<i class="ri-mail-send-line" style="font-size: 2.5rem; color: var(--primary);"></i>
<div>
<h3>Email Us</h3>
<p style="color: #ccc;">support@aethercode.com</p>
</div>
</div>
<div class="note-card" style="margin-bottom: 1.5rem; display: flex; align-items: center; gap: 2rem;">
<i class="ri-phone-line" style="font-size: 2.5rem; color: var(--primary);"></i>
<div>
<h3>Call Anytime</h3>
<p style="color: #ccc;">+91 98765 43210</p>
</div>
</div>
<div class="note-card" style="display: flex; align-items: center; gap: 2rem;">
<i class="ri-map-pin-2-line" style="font-size: 2.5rem; color: var(--primary);"></i>
<div>
<h3>Visit Us</h3>
<p style="color: #ccc;">123 Education Hub, Knowledge City, India</p>
</div>
</div>
</div>
</div>
<div style="margin-top: 4rem;">
<a href="index.html" class="btn">← Back to Home</a>
</div>
</div>
</section>
</body>
</html>