-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
118 lines (109 loc) · 5.1 KB
/
index.html
File metadata and controls
118 lines (109 loc) · 5.1 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
<!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>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="portfolio.html">Portfolio</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>
<!-- Hero Section-->
<section class="hero">
<h1>Hi, I'm <strong>Nirdhum Narayan.</strong> I'm a <strong>Product design engineer</strong> based in
<strong>India.</strong> Welcome to my
<strong>portfolio.</strong>
</h1>
</section>
<section class="work">
<div class="project">
<img src="assets/hashtag-gen.png" alt="Hashtag Generator cover" class="project-img">
<div class="project-details">
<div class="details">
<h2 class="project-name">Hashtag Generator</h2>
<p class="project-description">An AI powered hashtag generator for Cretorial AI while working
with Bifrost Studios.</p>
</div>
<a href="work/hashtag-generator.html" class="project-btn">View Details</a>
</div>
</div>
<div class="project">
<img src="assets/LCI-Group.png" alt="LCI Group website redesign cover" class="project-img">
<div class="project-details">
<div class="details">
<h2 class="project-name">LCI Group</h2>
<p class="project-description">Complete redesign of the website for the Liu Cheng International
(LCI) Group in association with Acropolis Infotech Pvt. Ltd.</p>
</div>
<a href="work/lci-group-redesign.html" class="project-btn">View Details</a>
</div>
</div>
<div class="project">
<img src="assets/trayosub.png" alt="trayosub app design cover" class="project-img">
<div class="project-details">
<div class="details">
<h2 class="project-name">TrayOsub</h2>
<p class="project-description">Subscription tracking: Track all your subscriptions at one place,
and it's free.</p>
</div>
<a href="under-updation.html" class="project-btn">View Details</a>
</div>
</div>
</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>