-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
54 lines (50 loc) · 2.07 KB
/
Copy pathcontact.html
File metadata and controls
54 lines (50 loc) · 2.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - Arun Roshan</title>
<link rel="stylesheet" href="contact.css">
</head>
<body>
<header>
<div class="container">
<h1>Welcome to Arun Roshan's Portfolio</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="aboutme.html">About Me</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="achive.html">Achievement</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="blog.html">Articles</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section id="contact">
<div class="container">
<h2 style="margin-top: 3%; margin-bottom: 3%;">Contact Information</h2>
<ul class="contact-info">
<li><strong>Email:</strong> arunroshan@gmail.com</li>
<li><strong>Phone:</strong> 9874561230</li>
<li><strong>Location:</strong> Vellore, Tamil Nadu</li>
</ul>
<h2>Social Media</h2>
<ul class="social-links">
<li><a href="https://www.linkedin.com/in/arun-roshan-120958210" target="_blank"><img src="LinkedIn_icon_circle.png" alt="LinkedIn"></a></li>
<li><a href="[Link to your Twitter profile]" target="_blank"><img src="x-social-media-white-round-icon.png" alt="Twitter"></a></li>
<li><a href="https://github.com/Arun-Roshan" target="_blank"><img src="icons8-github-24.png" alt="GitHub"></a></li>
</ul>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Arun Roshan. All rights reserved.</p>
</div>
</footer>
<script src="contact.js"></script>
</body>
</html>