-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
122 lines (113 loc) · 5 KB
/
contact.html
File metadata and controls
122 lines (113 loc) · 5 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description"
content="UI/UX Design with professional experience conducting UX research, teaching, designing & developing interactive end-to-end designs and user flows. I enjoy working in close collaboration with teams across technology, business and design.">
<meta name="keywords" content="UI Design, UI/UX, Design, Figma, Corporate Trainer, HTML, CSS, JavaScript">
<meta name="author" content="Nirdhum Narayan">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - Nirdhum - UI/UX Designer | Corporate Trainer | Product Designer | UX Engineer</title>
<link rel="icon" type="image/png" href="assets/nd-site.png">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="responsive.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<header id="top">
<!-- Navbar -->
<a href="index.html" class="logo">NIRDHUM N.</a>
<nav class="nav-opt" id="myTopnav">
<a href="index.html">Work</a>
<a href="about.html">About Me</a>
<a href="projects.html">Projects</a>
<a href="blog.html">Blog</a>
<a href="contact.html" class="contact">Contact</a>
<div class="toggle-btn">
<i class="fa-solid fa-moon"></i>
</div>
<!-- <a href="assets/Resume-Nirdhum_Narayan.pdf" download="Resume-Nirdhum_Narayan" class="cv"><i
class="fa-solid fa-download"></i>Download CV</a> -->
</nav>
<div class="mobile-navbar-btn">
<i class="fa-solid fa-grip-lines mobile-nav-icon"></i>
<i class="fa-solid fa-xmark mobile-nav-icon"></i>
</div>
</header>
<main>
<section class="contact-me">
<div class="contact-details">
<h1>Contact</h1>
<p>If you'd like to know more or have a project you'd like to discuss, don't hesitate to reach out.</p>
<div class="contact-email">
<p class="email-title">Email</p>
<p>nirdhum.n@gmail.com</p>
</div>
<div class="socials">
<a href="https://in.linkedin.com/in/nirdhum" target="_blank">
<i class="fa-brands fa-linkedin-in"></i>
</a>
<a href="https://github.com/nirdhum" target="_blank">
<i class="fa-brands fa-github"></i>
</a>
<a href="https://twitter.com/nirdhum" target="_blank">
<i class="fa-brands fa-x-twitter"></i>
</a>
<a href="https://medium.com/@nirdhum" target="_blank">
<i class="fa-brands fa-medium"></i>
</a>
</div>
</div>
<!-- <form class="form-section">
<div class="input-box">
<input type="text" id="name" required>
<label for="name">Full Name (Required)</label>
</div>
<div class="input-box">
<input type="text" id="email" required>
<label for="email">Your Email (Required)</label>
</div>
<div class="input-box">
<input type="text" id="subject" required>
<label for="subject">Subject (Required)</label>
</div>
<div class="msg-input-box">
<label for="message">Your Message (Required)</label>
<textarea id="message" rows="10" required></textarea>
</div>
<a href="" class="send-msg">
<i class="fa-solid fa-paper-plane"></i>
Send
</a>
</form> -->
</section>
</main>
<footer>
<p class="foot-logo">
Nirdhum Narayan
</p>
<div class="copy">Copyright
©
<span id="copyright">
</span>
</div>
<div class="socials">
<a href="https://in.linkedin.com/in/nirdhum" target="_blank">
<i class="fa-brands fa-linkedin-in"></i>
</a>
<a href="https://github.com/nirdhum" target="_blank">
<i class="fa-brands fa-github"></i>
</a>
<a href="https://twitter.com/nirdhum" target="_blank">
<i class="fa-brands fa-x-twitter"></i>
</a>
<a href="https://medium.com/@nirdhum" target="_blank">
<i class="fa-brands fa-medium"></i>
</a>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>