-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
45 lines (43 loc) · 2.06 KB
/
contact.html
File metadata and controls
45 lines (43 loc) · 2.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - Wasim Ahmad</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Contact</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="education.html">Education</a></li>
<li><a href="publications.html">Publications</a></li>
<li><a href="skills.html">Skills</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section>
<h2>Contact Information</h2>
<p>If you’d like to connect, feel free to reach out through any of the following channels:</p>
<div class="centered-skills">
<ul>
<li><strong>Email:</strong> <a href="mailto:was_last@iis.sinica.edu.tw">was_last@iis.sinica.edu.tw</a></li>
<li><strong>Research Gate:</strong> <a href="https://www.researchgate.net/profile/Wasim-Ahmad-31" target="_blank">Research Gate Profile</a></li>
<li><strong>LinkedIn:</strong> <a href="https://www.linkedin.com/in/WaS2917" target="_blank">LinkedIn Profile</a></li>
<li><strong>GitHub:</strong> <a href="https://github.com/wasim004" target="_blank">GitHub Profile</a></li>
<li><strong>Twitter:</strong> <a href="https://twitter.com" target="_blank">@wasim_ahmad</a></li>
<li><strong>Skype:</strong> <a href="skype:live:was_last?chat">live:was_last</a></li>
<li><strong>Contact #:</strong> +886-974151770</li>
</ul>
</div>
</section>
<footer>
<p>© 2025 Wasim Ahmad. All Rights Reserved.</p>
</footer>
</body>
</html>