diff --git a/Wireframe/index.html b/Wireframe/index.html index 0e014e535..f4ba621a3 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -9,24 +9,49 @@

Wireframe

-

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

+ A wireframe is a basic sketch of a webpage that helps plan the layout and organization of content before building the final design.

- -

Title

+ Read me file GitHub Doc image +

Read Me File

+

+ A README file explains what a project is and how to use it. It’s usually the first file people read when they open a + project, especially in software development. +

+ Read more +
+
+ Wireframe showing head line,top story,other top stories,news and buzz,featured,add +

Purpose of a wireframe?

+

+ A wireframe is a simple visual layout of a website, app, or software interface. Its purpose is to show the structure and + arrangement of content before detailed design and development begin. +

+ Read More +
+
+ Git branch diagram +

What is a branch in Git?

- Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, - voluptates. Quisquam, voluptates. + A branch in Git is a separate line of development that lets you work on changes without affecting the main project. + + Think of it like creating a copy of your project where you can safely: +

+

- Read more + Read More
diff --git a/Wireframe/style.css b/Wireframe/style.css index be835b6c7..9ae72f722 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -30,17 +30,36 @@ body { background: var(--paper); color: var(--ink); font: var(--font); + padding-bottom: 60px; } + +h1 { + text-align: center; +} + +.header_paragraph{ + text-align: center; + padding: 30px; +} +.git_header{ + margin-top: 90px; + margin-bottom: 90px; +} + a { padding: var(--space); border: var(--line); max-width: fit-content; } -img, -svg { +img { width: 100%; + height: 450px; object-fit: cover; + display: block; + } + + /* ====== Site Layout ====== Setting the overall rules for page regions https://www.w3.org/WAI/tutorials/page-structure/regions/ @@ -48,11 +67,16 @@ https://www.w3.org/WAI/tutorials/page-structure/regions/ main { max-width: var(--container); margin: 0 auto calc(var(--space) * 4) auto; + } footer { position: fixed; bottom: 0; + left: 0; + width:100%; text-align: center; + height: 60px; + background-color: rgb(255, 255, 255); } /* ====== Articles Grid Layout ==== Setting the rules for how articles are placed in the main element. @@ -64,7 +88,7 @@ https://gridbyexample.com/learn/ main { display: grid; grid-template-columns: 1fr 1fr; - gap: var(--space); + gap: 0; > *:first-child { grid-column: span 2; } @@ -85,5 +109,6 @@ article { } > img { grid-column: span 3; + } }