-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
92 lines (74 loc) · 3.58 KB
/
Copy pathcontact.html
File metadata and controls
92 lines (74 loc) · 3.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!doctype html>
<html lang="en">
<head>
<link rel="icon"
href="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj48ZGVmcz48bGluZWFyR3JhZGllbnQgaWQ9ImdyYWQiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0eWxlPSJzdG9wLWNvbG9yOiM5ZDBiMGI7c3RvcC1vcGFjaXR5OjEiIC8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdHlsZT0ic3RvcC1jb2xvcjojMmQwZjI1O3N0b3Atb3BhY2l0eToxIiAvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjIiIHk9IjIiIHdpZHRoPSIyOCIgaGVpZ2h0PSIyOCIgcng9IjQiIHJ5PSI0IiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjx0ZXh0IHg9IjE2IiB5PSIxNSIgZG9taW5hbnQtYmFzZWxpbmU9Im1pZGRsZSIgdGV4dC1hbmNob3I9Im1pZGRsZSIgZm9udC1mYW1pbHk9IkFyaWFsLCBzYW5zLXNlcmlmIiBmb250LXNpemU9IjIwIiBmb250LXdlaWdodD0iYm9sZCIgZmlsbD0iI2ZmZmZmZiI+UEY8L3RleHQ+PC9zdmc+">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Contact — S Balaji</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
<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=Comfortaa:wght@300..700&display=swap" rel="stylesheet">
</head>
<body>
<header class="site-header">
<div class="container header-inner">
<div class="brand">
<a href="index.html">My Portfolio</a>
</div>
<nav class="nav" id="nav">
<a href="index.html"><i class="fas fa-home"></i> Home</a>
<a href="courses.html"><i class="fas fa-book"></i> Courses</a>
<a href="skills.html"><i class="fas fa-code"></i> Skills</a>
<a href="projects.html"><i class="fas fa-folder-open"></i> Projects</a>
<a href="contact.html"><i class="fas fa-envelope"></i> Contact</a>
</nav>
<button class="nav-toggle" id="navToggle" aria-label="Toggle navigation">☰</button>
</div>
</header>
<main>
<section class="section contact">
<div class="container">
<h2 class="section-title">Contact</h2>
</div>
<div class="section-body">
<div class="contact-grid">
<a href="mailto:sbalaji272006@gmail.com" class="contact-card" id="emailLink">
<h4><i class="fas fa-envelope"></i> Email</h4>
</a>
<a href="https://wa.me/919790726503" class="contact-card" target="_blank">
<h4><i class="fab fa-whatsapp"></i> WhatsApp</h4>
</a>
<a href="https://instagram.com/mysticbalaji_96" class="contact-card" target="_blank">
<h4><i class="fab fa-instagram"></i> Instagram</h4>
</a>
<a href="https://twitter.com/BalajiS2706" class="contact-card" target="_blank">
<h4><i class="fab fa-twitter"></i> Twitter</h4>
</a>
</div>
</div>
</section>
</main>
<footer class="site-footer">
<div class="container">
<p>© 2026 · S Balaji | Debugging life one line at a time.</p>
</div>
</footer>
<script>
const navToggle = document.querySelector('.nav-toggle');
const nav = document.querySelector('.nav');
navToggle.addEventListener('click', () => {
nav.classList.toggle('open');
});
const emailLink = document.getElementById("emailLink");
if (window.innerWidth > 768) {
emailLink.href =
"https://mail.google.com/mail/u/0/?fs=1&to=sbalaji272006@gmail.com&tf=cm";
emailLink.target = "_blank";
emailLink.rel = "noopener noreferrer";
}
</script>
</body>
</html>