diff --git a/Wireframe/index.html b/Wireframe/index.html index 0e014e535..aabc4f6ac 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -3,31 +3,57 @@ - Wireframe + Understanding README, Wireframe and Git Branch
-

Wireframe

+

Understanding README Files, Wireframes and Git Branches

- This is the default, provided code and no changes have been made yet. -

+ A simple guide explaining three important web development concepts.

-
- -

Title

+ +
+ Illustration of a README file +

What is the purpose of a README file?

+

+ A README file explains what a project is about, how to use it, and any important information someone needs before working with the project code. +

+ Read more +
+ + + +
+ +
+ Example of a webpage wireframe +

What is the purpose of a wireframe?

+

+ A wireframe is a simple layout plan that shows where content will go on a webpage before you start designing or coding. +

+ + Read more +
+ +
+ Diagram showing Git branches +

What is a branch in Git?

- Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, - voluptates. Quisquam, voluptates. + A Git baranch lets developers work on new features without affecting the main project. When finished, the branch can be merged back in.

- Read more + Read more
+ +
+
diff --git a/Wireframe/style.css b/Wireframe/style.css index be835b6c7..79a484ce7 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -87,3 +87,26 @@ article { grid-column: span 3; } } + +.bottom-articles { + grid-column: span 2; + display: grid; + grid-template-columns: 1fr 1fr; + gap: var(--space); +} + +header{ + text-align: center; +} + +footer { + position: fixed; + bottom: 0; + left: 0; + width: 100%; + text-align: center; +} + + + +