Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Portfolio LCI2024016 #135

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
111 changes: 111 additions & 0 deletions LCI2024016/lci2024016.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,111 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<style>
body {
font-family: Arial;
margin: 0;
padding: 0;
background-color: #0fb1f1;
}

#v1 {
background-color:rgba(255, 0, 98, 0.495);
color: rgb(201, 50, 50);
padding: 30px 0;
text-align: center;
}
p{
color: rgb(133, 14, 79);
}

h1 {
margin: 0;
font-size: 2.5em;
}

main {
padding: 20px;
text-align: center;
}

.skills, .achievements {
margin: 20px 0;

}

ul {
list-style: none;
padding: 0;
}

li {
display: inline-block;
margin: 20px 20px;
padding: 30px;
border: 1px solid #333;
transition: background-color 0.3s, color 0.3s;
}

li:hover {
background-color:black;
color: white;
}

footer {
background-color: #0fb1f1;
color: white;
padding: 50px 0;
text-align: center;
}

.icon {
width: 100px;
height: 100px;
margin: 0 25px;

}

.icon:hover {
transform: scale(2);
color:blue;
font-size: 15px;
}
</style>
</head>
<body><div class="hv">
<div id="v1">
<header>
<h1><i>Omkar Gaddi</i></h1>
<p><i>Tech Enthusiasts at Indian Institute of Information Technology,Lucknow</i></p>
</header></div>

<main>
<section class="skills">
<h2>Skills</h2>
<ul>
<li>C++</li>
<li>Python</li>
<li>HTML</li>
<li>CSS</li>
</ul>
</section>

<section class="achievements">
<h2>Achievements</h2>
<p>CodeChef Rating: 1080</p>
<p>Qualified JEE Mains and Advanced</p>
</section>
</main>

<footer>
<a ></a>
<img src="Instagram-Logo.wine.svg" alt="Instagram" class="icon">
</a>

</footer></div>
</body>
</html>