

Hi, I'm Obai Albek, a computer science student with a strong passion for data structures, @@ -37,7 +37,7 @@
From f993ee27959cf6a939eed40f169eacd73138269a Mon Sep 17 00:00:00 2001 From: Obai Albek <89144251+ObaiAlbek@users.noreply.github.com> Date: Sun, 24 Aug 2025 22:11:37 +0200 Subject: [PATCH] implement the feedback page --- Projekt_Ordner/css/feedback.css | 42 +++++++++++++++++++++++++++++++ Projekt_Ordner/html/Homepage.html | 4 +-- Projekt_Ordner/html/aboutMe.html | 6 ++--- Projekt_Ordner/html/feedback.html | 18 +++++++++++++ Projekt_Ordner/php/contactMe.php | 4 +-- 5 files changed, 67 insertions(+), 7 deletions(-) create mode 100644 Projekt_Ordner/css/feedback.css create mode 100644 Projekt_Ordner/html/feedback.html diff --git a/Projekt_Ordner/css/feedback.css b/Projekt_Ordner/css/feedback.css new file mode 100644 index 0000000..32ad1e5 --- /dev/null +++ b/Projekt_Ordner/css/feedback.css @@ -0,0 +1,42 @@ +body { + margin: 0; + height: 100vh; + display: flex; + justify-content: center; + align-items: center; + background-color: #233142; + font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Noto Sans", Arial; +} + +.container{ + border: 1px solid black; + background-color:#364A62 ; + height: 700px; + width: 800px; + padding: 20px; + margin: 10px; + text-align: center; +} +.container h1{ + color:#00FF6A; + font-family: Roboto; + font-size: 70px; +} + +.container p{ + color:#ffffff; + font-family: Roboto; + font-size: 40px; + +} + +.container a{ + color:#726FC5; + font-family: Roboto; + font-size: 40px; + text-decoration: none; + padding: 10px; + margin: 20px; + font-weight: bold; + +} \ No newline at end of file diff --git a/Projekt_Ordner/html/Homepage.html b/Projekt_Ordner/html/Homepage.html index c3c73a4..4759432 100644 --- a/Projekt_Ordner/html/Homepage.html +++ b/Projekt_Ordner/html/Homepage.html @@ -7,7 +7,7 @@ - +
Learn how stacks, queues and other data structures work through interactive animations.
Hi, I'm Obai Albek, a computer science student with a strong passion for data structures, @@ -37,7 +37,7 @@