diff --git a/Wireframe/README.md b/Wireframe/README.md index aa85ec80b..a5f181249 100644 --- a/Wireframe/README.md +++ b/Wireframe/README.md @@ -1,18 +1,5 @@ # Wireframe -## Learning Objectives - - - -- [ ] Use semantic HTML tags to structure the webpage -- [ ] Create three articles, each including an image, title, summary, and a link -- [ ] Check a webpage against a wireframe layout -- [ ] Test web code using [Lighthouse](https://programming.codeyourfuture.io/guides/testing/lighthouse) -- [ ] Use version control by committing often and pushing regularly to GitHub -- [ ] Develop the habit of writing clean, well-structured, and error-free code - - -## Task ![Wireframe](./wireframe.png) Using the provided wireframe and resources, write a new webpage explaining: @@ -21,35 +8,33 @@ Using the provided wireframe and resources, write a new webpage explaining: 1. What is the purpose of a wireframe? 1. What is a branch in Git? -The page layout should closely match the wireframe. Exact replication is the goal, but small differences may be accepted. - There are some provided HTML and CSS files you can use to get started. You can use these files as a starting point or create your own files from scratch. You _must_ modify the HTML and CSS files to meet the acceptance criteria and you must check this criteria yourself before you submit your work. -## Acceptance Criteria +## Learning Objectives -- [ ] Semantic HTML tags are used to structure the webpage. -- [ ] The page scores 100 for Accessibility in the Lighthouse audit. -- [ ] The webpage is styled using a linked .css file. -- [ ] The webpage is properly committed and pushed to a branch on GitHub. -- [ ] The articles section contains three distinct articles, each with its own unique image, title, summary, and link. -- [ ] The page footer is fixed to the bottom of the viewport. -- [ ] The page layout closely match the wireframe. + -### Developers must adhere to professional standards. +- [ ] Use semantic HTML tags to structure the webpage +- [ ] Create three articles, each including an image, title, summary, and a link +- [ ] Check a webpage against a wireframe layout +- [ ] Test web code using [Lighthouse](https://programming.codeyourfuture.io/guides/testing/lighthouse) +- [ ] Use version control by committing often and pushing regularly to GitHub + + +## Acceptance Criteria -> Before you say you're done: Is your code readable? Does it run correctly? Does it look professional? +- [✅] Semantic HTML tags are used to structure the webpage. +- [✅] The page scores 100 for Accessibility in the Lighthouse audit. +- [✅] The page header includes a title and description. +- [✅] The articles section has three unique articles, each including an image, title, summary, and a link. +- [✅] The page footer is fixed to the bottom of the viewport. +- [✅] The webpage is styled using a linked .css file. +- [✅] The webpage is properly committed and pushed to a branch on GitHub. -These practices reflect the level of quality expected in professional work. -They ensure your code is reliable, maintainable, and presents a polished, credible experience to users. -- [ ] My HTML code has no errors or warnings when validated using https://validator.w3.org/ -- [ ] My code is consistently formatted -- [ ] My page content is free of typos and grammatical mistakes -- [ ] I commit often and push regularly to GitHub ## Resources - [Wireframe](https://www.productplan.com/glossary/wireframe/) - [Semantic HTML](https://www.w3schools.com/html/html5_semantic_elements.asp) - [:first-child](https://developer.mozilla.org/en-US/docs/Web/CSS/:first-child) -- [Format Code and Make Logical Commits in VS Code](../practical_guide.md) diff --git a/Wireframe/images/img_1.png b/Wireframe/images/img_1.png new file mode 100644 index 000000000..98354ac9e Binary files /dev/null and b/Wireframe/images/img_1.png differ diff --git a/Wireframe/images/img_2.png b/Wireframe/images/img_2.png new file mode 100644 index 000000000..061f52293 Binary files /dev/null and b/Wireframe/images/img_2.png differ diff --git a/Wireframe/images/img_3.png b/Wireframe/images/img_3.png new file mode 100644 index 000000000..4ed786477 Binary files /dev/null and b/Wireframe/images/img_3.png differ diff --git a/Wireframe/index.html b/Wireframe/index.html index 0e014e535..72916052e 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -3,30 +3,49 @@ - Wireframe + Developer Fundamentals
-

Wireframe

+

Developer Fundamentals

- This is the default, provided code and no changes have been made yet. + Learn the essentials of building and managing projects in tech — from wireframes for planning designs, to Git branches for version control, and README files for clear project documentation.

- -

Title

+ +

What is a Wireframe?

- Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, - voluptates. Quisquam, voluptates. + A wireframe is a simple visual guide used to plan the layout of a webpage or app. It focuses on structure rather than design, showing where elements like headers, navigation, content, and images will be placed. Wireframes help developers and designers understand how a page will work before adding colors, images, or styling.

- Read more + Read more +
+ +
+ +

What is a Readme.md file

+

+ A README.md file is the main documentation file in a project. It explains what the project is about, how it works, and how to use it. Written in Markdown, it helps developers and users quickly understand the purpose of the project and how to get started. +

+ + Read more + +
+ +
+ +

What is a branch in GIT?

+

+ A branch in Git is a separate version of your code that allows you to work on new features or fixes without affecting the main project. It helps developers collaborate safely by keeping changes isolated until they are ready to be merged into the main branch. +

+ Read more
diff --git a/Wireframe/style.css b/Wireframe/style.css index be835b6c7..42a33649a 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -30,6 +30,7 @@ body { background: var(--paper); color: var(--ink); font: var(--font); + } a { padding: var(--space); @@ -45,14 +46,20 @@ svg { Setting the overall rules for page regions https://www.w3.org/WAI/tutorials/page-structure/regions/ */ + +header { + text-align: center; + max-width: var(--container); + margin: 0 auto calc(var(--space) * 4) auto; +} main { max-width: var(--container); margin: 0 auto calc(var(--space) * 4) auto; } footer { - position: fixed; - bottom: 0; - text-align: center; + display: flex; + justify-content: center; /* Centers horizontally */ + align-items: center; } /* ====== Articles Grid Layout ==== Setting the rules for how articles are placed in the main element. @@ -87,3 +94,21 @@ article { grid-column: span 3; } } + +button, +.button { + display: inline-block; + background-color: rgb(247, 247, 247); + color: rgb(0, 0, 0); + padding: 10px 20px; + + cursor: pointer; + text-decoration: none; + transition: 0.3s; +} + +button:hover, +.button:hover { + background-color: rgb(163, 163, 179); + transform: scale(1.05); +} diff --git a/Wireframe/wireframel Lighthouse score.jpg b/Wireframe/wireframel Lighthouse score.jpg new file mode 100644 index 000000000..b0339b254 Binary files /dev/null and b/Wireframe/wireframel Lighthouse score.jpg differ