-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
33 lines (31 loc) · 893 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact | Dr. Haradhan Adhikary</title>
<link rel="stylesheet" href="style.css" />
<script src="script.js" defer></script>
</head>
<body>
<!-- Navbar will load dynamically -->
<section>
<h2>Contact Me</h2>
<div class="container">
<p>
Email: <a href="mailto:[email protected]">[email protected]</a>
</p>
<p>Phone: +91 7501228429 | +48 730242258</p>
<p>
Address: Faculty of Physics, University of Warsaw, Pasteura 5,
Warszawa, Poland
</p>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Dr. Haradhan Adhikary. All rights reserved.</p>
</div>
</footer>
</body>
</html>