-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
39 lines (36 loc) · 1.45 KB
/
contact.html
File metadata and controls
39 lines (36 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - Hariharan</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>Contact Me</h2>
<div>
<p><strong>Address:</strong> 1/545-4, Kuppampalayam, Kavettipatti, Namakkal, Tamil Nadu – 637 003</p>
<p><strong>Phone:</strong> +91-6382572583</p>
<p><strong>Email:</strong> <a href="mailto:hariharansekarselvam@gmail.com">hariharansekarselvam@gmail.com</a></p>
<p><strong>LinkedIn:</strong> <a href="https://www.linkedin.com/in/hariharan-s-3b514325a/" target="_blank">Hariharan</a></p>
</div>
</section>
<footer>
<p>© 2024 Hariharan. All rights reserved.</p>
</footer>
</body>
</html>