Skip to content

Commit

Permalink
initalization
Browse files Browse the repository at this point in the history
  • Loading branch information
FxJYg committed Dec 28, 2024
1 parent 02d083e commit 2ebd227
Show file tree
Hide file tree
Showing 3 changed files with 106 additions and 0 deletions.
49 changes: 49 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Felix's Portfolio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>

<!-- Header Section -->
<header>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>

<!-- About Section -->
<section id="about">
<h1>About Me</h1>
<p>Hi, I'm Felix! I'm a software engineering student learning full-stack development. This portfolio showcases my work.</p>
</section>

<!-- Projects Section -->
<section id="projects">
<h1>My Projects</h1>
<p>Here are some of the projects I've worked on.</p>
<!-- You will add project cards later -->
</section>

<!-- Contact Section -->
<section id="contact">
<h1>Contact</h1>
<p>Feel free to get in touch with me!</p>
<!-- You can add a form here later -->
</section>

<!-- Footer Section -->
<footer>
<p>© 2024 Felix's Portfolio. All rights reserved.</p>
</footer>

</body>
</html>
Empty file added scripts.js
Empty file.
57 changes: 57 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
/* Global Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}

header {
background-color: #333;
color: white;
padding: 10px 0;
}

nav ul {
list-style-type: none;
text-align: center;
margin: 0;
padding: 0;
}

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

nav ul li a {
color: white;
text-decoration: none;
font-size: 18px;
}

/* Sections */
section {
padding: 50px 20px;
text-align: center;
}

#about {
background-color: #fff;
}

#projects {
background-color: #e3e3e3;
}

#contact {
background-color: #fff;
}

footer {
text-align: center;
padding: 20px;
background-color: #333;
color: white;
}

0 comments on commit 2ebd227

Please sign in to comment.