-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
38 lines (36 loc) · 1.54 KB
/
contact.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - Nareshbrabha Sadhasivam</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Me</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="skills.html">Skills</a></li>
<li><a href="activities.html">Activities</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section id="contact">
<h2 class="animate__animated animate__zoomIn">Contact Me</h2>
<div class="contact-info animate__animated animate__fadeInUp">
<p><strong>Address:</strong> 5/27 Thirumudigoundanoor, Velliyanai, Karur-639118</p>
<p><strong>Phone:</strong> +91-9342848730</p>
<p><strong>Email:</strong> <a href="mailto:nirmalanitheesh15@gmail.com">nirmalanitheesh15@gmail.com</a></p>
<p><strong>LinkedIn:</strong> <a href="https://www.linkedin.com/in/naresh-brabha-s-00bb11259" target="_blank">Nareshbrabha</a></p>
</div>
</section>
<footer>
<p>© 2024 Nareshbrabha. All rights reserved.</p>
</footer>
</body>
</html>