-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
34 lines (33 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Me</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">
<a href="#" class="logo">BNY</a>
<nav class="navbar">
<a href="index.html">Home</a>
<a href="about.html">About Me</a>
<a href="projects.html">Projects</a>
<a href="#" class="active">Contact Me</a>
</nav>
</header>
<div class="ccontent">
<div class="chead">
Link to my Handles :
</div>
<div class="clist">
<ul>
<li><a href="[email protected]">Gmail</a></li>
<li><a href="https://instagram.com/bnyayy?igshid=OGQ5ZDc2ODk2ZA==">Instagram</a></li>
<li><a href="https://www.facebook.com/profile.php?id=61550199017046&mibextid=ZbWKwL">Facebook</a></li>
<li><a href="https://www.linkedin.com/in/binaya-kumar-naik-5181a328b?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app">LinkedIn</a></li>
</ul>
</div>
</div>
</body>
</html>