+
Projects
+
+
+
+
+
+
Women's Digital Health Hackathon
+
Oct 2024 β Nov 2024
+
+ Project: Ana Wa Janyny
+
+
+
+
+
+
Hackathon of Programmers for Sustainable Agricultural Development
+
Mar 2022 β Apr 2022
+
+
+
+
+
+
Graduation Project
+
Oct 2025 β Dec 2025
+
+ Project: ResourcesSync: Collaborative Learning Hub.
+ Methodology used "waterfall methodology".
+ Frontend Development: HTML, CSS, JavaScript.
+ Backend Development: PHP, SQL.
+ Tools & Technologies:MySQL, Overleaf, Canva, and more.
+
+
+
+
+
+
+
+
+ Skills
+
+
+
+
+
HTML-JavaScript-CSS
+
+
+
+
+
+
+
Git&Github-Django-SQL-Figma-Canva
+
+
+
+
+
+
+
+
+ Certifications
+
+
+
+
+
PCEP β Python Institute β 2025
+
+
+
+
+
Saudi Council of Engineers β ID: 1171819
+
+
+
+
+
+
+
+ Contact Me
+
+ Your message will be sent directly via EmailJS.
+
+
+
+
+
+ © 2025 Ghala Alnmasi | All Rights Reserved
+
+
+
+
diff --git a/careers/cv/script.js b/careers/cv/script.js
new file mode 100644
index 0000000..ca581fb
--- /dev/null
+++ b/careers/cv/script.js
@@ -0,0 +1,12 @@
+document.getElementById("cv-form").addEventListener("submit", function(e){
+ e.preventDefault();
+
+ emailjs.sendForm("service_5n2h5gs", "template_f9cg8ja", this)
+ .then(function(response){
+ alert("CV sent successfully!");
+ console.log(response);
+ }, function(error){
+ alert("Failed to send CV.");
+ console.error(error);
+ });
+});
diff --git a/careers/cv/style.css b/careers/cv/style.css
new file mode 100644
index 0000000..0d0c2e5
--- /dev/null
+++ b/careers/cv/style.css
@@ -0,0 +1,37 @@
+/* ANIMATIONS */
+@keyframes fadeInDown {
+ 0% { opacity: 0; transform: translateY(-50px); }
+ 100% { opacity: 1; transform: translateY(0); }
+ }
+
+ @keyframes fadeInUp {
+ 0% { opacity: 0; transform: translateY(50px); }
+ 100% { opacity: 1; transform: translateY(0); }
+ }
+
+ @keyframes fadeInLeft {
+ 0% { opacity: 0; transform: translateX(-50px); }
+ 100% { opacity: 1; transform: translateX(0); }
+ }
+
+ @keyframes fadeInRight {
+ 0% { opacity: 0; transform: translateX(50px); }
+ 100% { opacity: 1; transform: translateX(0); }
+ }
+
+ @keyframes bounceArrow {
+ 0%, 100% { transform: translateY(0); }
+ 50% { transform: translateY(15px); }
+ }
+
+ /* APPLY ANIMATIONS */
+ .animate-fadeInDown { animation: fadeInDown 1s ease forwards; }
+ .animate-fadeInUp { animation: fadeInUp 1s ease forwards; }
+ .animate-fadeInLeft { animation: fadeInLeft 1s ease forwards; }
+ .animate-fadeInRight { animation: fadeInRight 1s ease forwards; }
+ .animate-bounceArrow { animation: bounceArrow 2s infinite; }
+
+ /* DELAY CLASSES */
+ .delay-200 { animation-delay: 0.2s; }
+ .delay-400 { animation-delay: 0.4s; }
+
\ No newline at end of file
diff --git a/css/introdution/index.html b/css/introdution/index.html
new file mode 100644
index 0000000..745967b
--- /dev/null
+++ b/css/introdution/index.html
@@ -0,0 +1,151 @@
+
+
+
+
+
+
My Little Libraryπ
+
+
+
+
+
+
+ My Little Library π
+
+
+
+
+
+
+
+ Books in My Library
+
+
+
+
+ Book: The Prophet's Influence
+
+ Author: Omar Taher | Year: 2017
+
+
+ Book Description
+ Short stories inspired by the Prophet's biography, where Omar Taher narrates in his enjoyable and touching style about 12 men and women around the Prophet.
+
+ To purchase the book click here
+
+ Rate this book:
+
+
+
+
+
+ Book: The Subconscious Mind
+
+ Author: Joseph Murphy | Year: 1963
+
+
+ Book Description
+ This book explores the power of the subconscious mind and how to use it to achieve success and happiness in life.
+
+ To purchase the book click here
+
+ Rate this book:
+
+
+
+
+
+ Book: Why We Sleep
+
+ Author: Matthew Walker PhD | Year: 2018
+
+
+ Book Description
+ Why We Sleep Is An Important And Fascinating Book...Walker Taught Me A Lot About This Basic Activity That Every Person On Earth Needs.
+
+ To purchase the book click here
+
+ Rate this book:
+
+
+
+
+
+
+
+
+ Suggest a New Book βοΈ
+
+
+
+
+
+
+
+
+
+
+
diff --git a/css/introdution/style.css b/css/introdution/style.css
new file mode 100644
index 0000000..306e233
--- /dev/null
+++ b/css/introdution/style.css
@@ -0,0 +1,147 @@
+/* Global styles */
+* {
+ box-sizing: border-box;
+ margin: 0;
+ padding: 0;
+ font-family: 'Arial', sans-serif;
+}
+
+body {
+ background: #f0f4f8;
+ color: #333;
+ line-height: 1.6;
+ padding: 20px;
+}
+
+/* Header */
+header {
+ background: linear-gradient(to right, #a60744, #b5557a);
+ color: white;
+ padding: 25px;
+ border-radius: 10px;
+ text-align: center;
+}
+
+header h1 {
+ font-size: 2.5em;
+ margin-bottom: 10px;
+}
+
+/* Navigation */
+nav ul {
+ list-style: none;
+ display: flex;
+ justify-content: center;
+ gap: 25px;
+ margin-top: 10px;
+}
+
+nav ul li a {
+ text-decoration: none;
+ color: white;
+ font-weight: bold;
+ padding: 8px 15px;
+ border-radius: 5px;
+}
+
+nav ul li a:hover {
+ background: rgba(255, 255, 255, 0.2);
+}
+
+/* Sections */
+section {
+ background: white;
+ padding: 25px;
+ margin-bottom: 25px;
+ border-radius: 10px;
+}
+
+/* Section Titles */
+section h2 {
+ font-size: 2em;
+ margin-bottom: 15px;
+ color: #b5557a;
+}
+
+
+
+
+/* Articles (Books) */
+article {
+ border: 1px solid #ddd;
+ padding: 15px;
+ margin-bottom: 20px;
+ border-radius: 10px;
+}
+
+/* div Books */
+div {
+ display: flex;
+ gap: 20px;
+}
+
+article img {
+ display: block;
+ margin-bottom: 10px;
+ border-radius: 5px;
+}
+
+/* Forms */
+form input[type="text"],
+form select,
+form textarea {
+ width: 100%;
+ padding: 10px;
+ margin: 5px 0 15px 0;
+ border: 1px solid #ccc;
+ border-radius: 5px;
+}
+
+form input[type="text"]:focus,
+form select:focus,
+form textarea:focus {
+ border-color: #b5557a;
+}
+
+form input[type="submit"] {
+ padding: 12px 20px;
+ background: #b5557a;
+ color: white;
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+ font-weight: bold;
+}
+
+form input[type="submit"]:hover {
+ background: #b76c89;
+}
+
+/* Ratings and checkboxes */
+form label {
+ display: block;
+ margin-bottom: 8px;
+}
+
+/* Details summary */
+details summary {
+ font-weight: bold;
+ cursor: pointer;
+ margin-bottom: 5px;
+}
+
+/* Footer */
+footer {
+ text-align: center;
+ padding: 20px;
+ border-radius: 10px;
+ background: linear-gradient(to left, #a60744, #b5557a);
+ color: white;
+ margin-top: 25px;
+}
+
+footer a {
+ text-decoration: none;
+ color: white;
+ font-weight: bold;
+}
\ No newline at end of file
diff --git a/html/.DS_Store b/html/.DS_Store
new file mode 100644
index 0000000..1d3dc4d
Binary files /dev/null and b/html/.DS_Store differ
diff --git a/html/introduction/.DS_Store b/html/introduction/.DS_Store
new file mode 100644
index 0000000..a308495
Binary files /dev/null and b/html/introduction/.DS_Store differ
diff --git a/html/introduction/index.html b/html/introduction/index.html
new file mode 100644
index 0000000..45c9302
--- /dev/null
+++ b/html/introduction/index.html
@@ -0,0 +1,127 @@
+
+
+
+
+
+
My Little Libraryπ
+
+
+
+
+
+ My Little Library π
+
+
+
+
+
+
+
+
+ Books in My Library
+
+
+
+ Book: The Prophet's Influence
+
+ Author: Omar Taher | Year: 2017
+
+
+ Book Description
+ Short stories inspired by the Prophet's biography, where Omar Taher narrates in his enjoyable and touching style about 12 men and women around the Prophet.
+
+ To purchase the book click here
+
+ Rate this book:
+
+
+
+
+
+ Book: The Subconscious Mind
+
+ Author: Joseph Murphy | Year: 1963
+
+
+ Book Description
+ This book explores the power of the subconscious mind and how to use it to achieve success and happiness in life.
+
+ To purchase the book click here
+
+ Rate this book:
+
+
+
+
+
+
+
+
+ Suggest a New Book βοΈ
+
+
+
+
+
+
+
+
+
+
+
+