-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
106 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
|