diff --git a/Wireframe/index.html b/Wireframe/index.html index 0e014e535..458e2284e 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -1,32 +1,66 @@ - + - Wireframe + Understanding README, Wireframe and Git Branch
-

Wireframe

-

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

+

Understanding README Files, Wireframes and Git Branches

+

A simple guide explaining three important web development concepts.

-
- -

Title

+ +
+ Illustration of a README file +

What is the purpose of a README file?

- Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, - voluptates. Quisquam, voluptates. + 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 + 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?

+

+ 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 +
+
diff --git a/Wireframe/style.css b/Wireframe/style.css index be835b6c7..150607d46 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -87,3 +87,22 @@ 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; +} \ No newline at end of file