Skip to content
Open
Show file tree
Hide file tree
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
45 changes: 45 additions & 0 deletions Easy/Tejas Task 9/portfolio.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tejas Kankhar | Web Developer</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet"/>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Hi, I’m Tejas Kankhar – Crafting Digital Experiences & Scalable Web Solutions.</h1>
<p>Dedicated to designing and developing seamless, high-performance web applications.</p>
</header>

<section id="about">
<h2>About Me</h2>
<p>I am a detail-oriented web developer with a strong foundation in front-end technologies.
I specialize in building responsive, user-friendly websites and efficient
Passionate about solving complex problems through code and constantly learning new technologies.</p>
</section>

<section id="skills">
<h2>Technical Skills</h2>
<ul>
<li>HTML & CSS (Advanced)</li>
<li>JavaScript </li>
<li>Python </li>
<li>Version Control (Git & GitHub)</li>
<li>Problem-Solving & Algorithms</li>
</ul>
</section>

<section id="contact">


<p><i class="ri-mail-fill"></i> Email: <a href="mailto:[email protected]">[email protected]</a></p>
<p><i class="ri-linkedin-box-fill"></i> LinkedIn: <a href="https://www.linkedin.com/in/tejas-kankhar-627" target="_blank">linkedin.com/in/tejas-kankhar-627</a></p>
<p><i class="ri-github-fill"></i> GitHub: <a href="https://github.com/tejaskankhar" target="_blank">github.com/tejaskankhar</a></p>

</p>

</section>
</body>
</html>
118 changes: 118 additions & 0 deletions Easy/Tejas Task 9/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}

html, body {
height: 100%;
width: 100%;
background: linear-gradient(135deg, #1A2980, #26D0CE);
color: #333;

}

/* Header Styling */
header {
background: linear-gradient(120deg, #FF512F, #DD2476); /* Vibrant Red to Purple */
color: white;
padding: 35px 15px;
text-align: center;
font-size: 24px;
font-weight: bold;
letter-spacing: 1px;
}

/* Section Styling */
section {
padding: 25px;
margin: 25px auto;
width: 80%;
background: white;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
border-radius: 12px;
text-align: center;
}

/* Headings */
h2 {
font-size: 28px;
margin-bottom: 20px;
color: #ff5733;
text-transform: uppercase;
}
p{
font-size: 20px;
margin-bottom: 20px;

font-weight: bold;
}

/* Skills Section */
ul {
list-style: none;
padding: 0;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 15px;
}

ul li {
background-color: #6A0572;
color: white;
padding: 12px 20px;
border-radius: 25px;
font-weight: 600;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
transition: transform 0.3s, background 0.3s;
}

ul li:hover {
transform: scale(1.1);
background-color: #9C27B0;
}

/* Contact Form */
form {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
max-width: 550px;
margin: auto;
}

input, textarea {
width: 100%;
padding: 15px;
margin: 10px 0;
border: 2px solid #FF4081;
border-radius: 5px;
font-size: 16px;
}

button {
background: linear-gradient(90deg, #FF8C00, #FF0080);
color: white;
padding: 12px 25px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 18px;
transition: all 0.3s ease;
}

button:hover {
background: linear-gradient(90deg, #FF0080, #FF8C00);
transform: scale(1.05);
}

/* Contact Section */
#contact {
font-size: 20px;
color: #E91E63;
font-weight: bold;
}