Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 32 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,28 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ranojit K. | Front-end Engineer</title>
<link rel="stylesheet" href="style.css">
<style>
Copy link

Copilot AI Aug 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The inline CSS styles should be moved to the existing external stylesheet (style.css) to maintain separation of concerns and improve maintainability.

Copilot uses AI. Check for mistakes.
.bio {
text-align: center;
line-height: 1.6;
}
.bio h1 {
font-size: 3rem;
margin-bottom: 1rem;
}
.bio p {
font-size: 1.2rem;
margin-bottom: 0.5rem;
}
.bio a {
color: #ecf0f1;
text-decoration: none;
border-bottom: 1px dotted #ecf0f1;
}
.bio a:hover {
border-bottom-style: solid;
}
</style>
</head>

<body>
Expand All @@ -17,8 +39,16 @@
<div class="stars3" aria-hidden="true"></div>
<main class="main">
<section class="contact">
<h1 class="title">Ranojit K. is...</h1>
<h2 class="sub-title">Under Construction</h2>
<div class="bio">
<h1 class="title">Hi, I'm Ranojit :wave:</h1>
Copy link

Copilot AI Aug 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The emoji 👋 should be replaced with an actual emoji character or removed, as text-based emoji notation may not be properly rendered or announced by screen readers.

Suggested change
<h1 class="title">Hi, I'm Ranojit :wave:</h1>
<h1 class="title">Hi, I'm Ranojit 👋</h1>

Copilot uses AI. Check for mistakes.
<p>:eyes: I'm a front-end Web Developer</p>
Copy link

Copilot AI Aug 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The text-based emoji 👀 should be replaced with an actual emoji character or removed for better screen reader accessibility.

Suggested change
<p>:eyes: I'm a front-end Web Developer</p>
<p>👀 I'm a front-end Web Developer</p>

Copilot uses AI. Check for mistakes.
<p>:seedling: I'm currently learning, JavaScript</p>
Copy link

Copilot AI Aug 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The text-based emoji 🌱 should be replaced with an actual emoji character or removed for better screen reader accessibility.

Suggested change
<p>:seedling: I'm currently learning, JavaScript</p>
<p>🌱 I'm currently learning, JavaScript</p>

Copilot uses AI. Check for mistakes.
<p>:revolving_hearts: I'm looking to collaborate on react projects</p>
Copy link

Copilot AI Aug 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The text-based emoji 💞 should be replaced with an actual emoji character or removed for better screen reader accessibility.

Suggested change
<p>:revolving_hearts: I'm looking to collaborate on react projects</p>
<p>💞 I'm looking to collaborate on react projects</p>

Copilot uses AI. Check for mistakes.
<p>:mailbox: <a href="mailto:hi@ranojit.com">hi@ranojit.com</a></p>
Copy link

Copilot AI Aug 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The text-based emoji 📫 should be replaced with an actual emoji character or removed for better screen reader accessibility.

Suggested change
<p>:mailbox: <a href="mailto:hi@ranojit.com">hi@ranojit.com</a></p>
<p>📫 <a href="mailto:hi@ranojit.com">hi@ranojit.com</a></p>

Copilot uses AI. Check for mistakes.
<p>
<a href="https://www.linkedin.com/in/RanojitKumar/" target="_blank">LinkedIn</a>
</p>
</div>
</section>
</main>

Expand Down