diff --git a/Wireframe/css/style.css b/Wireframe/css/style.css
index e69de29b..1aa50e98 100644
--- a/Wireframe/css/style.css
+++ b/Wireframe/css/style.css
@@ -0,0 +1,138 @@
+/* Reset */
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+}
+
+body {
+ font-family: Arial, sans-serif;
+ line-height: 1.6;
+}
+/* Title Section */
+.title-section {
+ width: 100%;
+ padding: 40px 20px;
+
+ text-align: center;
+
+ border-bottom: 1px solid #ddd;
+}
+
+.title-section h1 {
+ font-size: 3rem;
+ color: #333;
+ margin-bottom: 10px;
+ font-weight: bold;
+}
+
+.title-section p {
+ font-size: 1.2rem;
+ color: #555;
+}
+
+/* Main Section */
+.main-section {
+ width: 90vw;
+ margin: 0 auto;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+}
+
+/* Subsection (Full Width) */
+.subsection {
+ width: 100%;
+ padding: 20px;
+ margin: 20px 0;
+ background-color: #fff;
+ border: 1px solid #ddd;
+ border-radius: 8px;
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
+ text-align: center;
+}
+
+.subsection img {
+ width: 300px;
+ height: 200px;
+ max-height: 250px;
+ border-radius: 8px;
+}
+
+.subsection h2 {
+ margin-top: 15px;
+ font-size: 2rem;
+ color: #333;
+}
+
+.subsection p {
+ margin-top: 10px;
+ color: #555;
+ font-size: 1.1rem;
+}
+
+/* Subsection-Second (Two Columns) */
+.subsection-second {
+ display: flex;
+ justify-content: space-between;
+ width: 100%;
+ gap: 20px;
+ margin: 20px 0;
+}
+
+.subsection-second .subsection {
+ width: 48%;
+}
+
+.subsection-second .subsection img {
+ max-height: 200px;
+}
+/* Read More Button */
+.read-more-button {
+ display: inline-block;
+ padding: 10px 20px;
+ margin-top: 15px;
+ background-color: #0000CC; /* GitHub blue */
+ font-size: 1rem;
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+ transition: background-color 0.3s ease;
+ text-decoration: none;
+}
+.read-more-button a{
+ color: #fff;
+ text-decoration: none;
+}
+.read-more-button:hover{
+ color: #0000CC;
+ background-color: #111;
+}
+
+/* Hover effect on the link within the button */
+.read-more-button {
+ background-color: #0056b3; /* Darker blue on hover */
+}
+/* choose first child in sub section button */
+.subsection-second .subsection:first-child h2{
+ color: red
+}
+
+
+/* Footer Section */
+.footer-section {
+ height: 5vh;
+ width: 100%;
+ padding: 20px;
+ background-color: #333; /* Dark background color */
+ color: #fff; /* White text */
+ text-align: center;
+ box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow at the top */
+ position: relative;
+ bottom: 0;
+}
+
+.footer-section p {
+ font-size: 1rem;
+ margin: 0;
+}
diff --git a/Wireframe/index.html b/Wireframe/index.html
index 67544158..a6cda934 100644
--- a/Wireframe/index.html
+++ b/Wireframe/index.html
@@ -1,13 +1,87 @@
-
+®
-
+
+
+
+ What is Git?
+
+ Git is a distributed version control system that allows developers to
+ track changes in their codebase, collaborate, and manage project
+ versions efficiently.
+
+
+ Read More
+
+
+
+
+
+
+
+ Why do developers need Git?
+
+ Git is essential for developers as it facilitates collaboration,
+ allows tracking of code changes, and helps manage different versions
+ of projects.
+
+
+ Read More
+
+
+
+
+
+
+ What is a branch in Git?
+
+ A branch in Git allows developers to create separate lines of
+ development, making it easier to work on features independently
+ before merging them.
+
+
+ Read More
+
+
+
+
+
+
+
+