From 2ebd22791c7895dd20d364f7185af457b8316418 Mon Sep 17 00:00:00 2001 From: FelixYang Date: Sat, 28 Dec 2024 00:53:43 -0500 Subject: [PATCH] initalization --- index.html | 49 ++++++++++++++++++++++++++++++++++++++++++++++ scripts.js | 0 styles.css | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 106 insertions(+) create mode 100644 index.html create mode 100644 scripts.js create mode 100644 styles.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..65bd483 --- /dev/null +++ b/index.html @@ -0,0 +1,49 @@ + + + + + + + Felix's Portfolio + + + + + +
+ +
+ + +
+

About Me

+

Hi, I'm Felix! I'm a software engineering student learning full-stack development. This portfolio showcases my work.

+
+ + +
+

My Projects

+

Here are some of the projects I've worked on.

+ +
+ + +
+

Contact

+

Feel free to get in touch with me!

+ +
+ + + + + + diff --git a/scripts.js b/scripts.js new file mode 100644 index 0000000..e69de29 diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..b0be6c3 --- /dev/null +++ b/styles.css @@ -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; + } + \ No newline at end of file