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

LCS2024046 #131

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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 LCS2024046/index.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>Your Name - Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>BOLLAGANI ABHINAV</h1>
<p>Branch: COMPUTER SCIENCE | Roll No: LCS2024046</p>
</header>

<nav>
<ul>
<li><a href="#skills">Skills</a></li>
<li><a href="#hobbies">Hobbies</a></li>
</ul>
</nav>

<section id="skills">
<h2>Skills</h2>
<ul>
<li>C++</li>
<li>HTML</li>
<li>CSS</li>

</ul>
</section>

<section id="hobbies">
<h2>Hobbies</h2>
<ul>
<li>PLAYING SPORTS</li>
<li>GAMING</li>
<li>WATCHING MOVIES</li>

</ul>
</section>
<footer>
<p>&copy; 2024 BOLLAGANI ABHINAV. All rights reserved.</p>
</footer>
</body>
</html>
47 changes: 47 additions & 0 deletions LCS2024046/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
}

header {
background: #4CAF50;
color: white;
padding: 20px;
text-align: center;
}

nav {
background: #333;
color: white;
}

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

nav ul li {
display: inline;
margin: 0 15px;
}

nav ul li a {
color: white;
text-decoration: none;
}

section {
padding: 20px;
}

footer {
text-align: center;
padding: 10px;
background: #333;
color: white;
position: fixed;
bottom: 0;
width: 100%;
}