You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[ ] Use semantic HTML tags to structure the webpage
8
-
-[ ] Create three articles, each including an image, title, summary, and a link
9
-
-[ ] Check a webpage against a wireframe layout
10
-
-[ ] Test web code using [Lighthouse](https://programming.codeyourfuture.io/guides/testing/lighthouse)
11
-
-[ ] Use version control by committing often and pushing regularly to GitHub
12
-
-[ ] Develop the habit of writing clean, well-structured, and error-free code
13
-
<!--{{</objectives>}}>-->
14
-
15
-
## Task
16
3

17
4
18
5
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:
21
8
1. What is the purpose of a wireframe?
22
9
1. What is a branch in Git?
23
10
24
-
The page layout should closely match the wireframe. Exact replication is the goal, but small differences may be accepted.
25
-
26
11
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.
27
12
28
-
## Acceptance Criteria
13
+
## Learning Objectives
29
14
30
-
-[ ] Semantic HTML tags are used to structure the webpage.
31
-
-[ ] The page scores 100 for Accessibility in the Lighthouse audit.
32
-
-[ ] The webpage is styled using a linked .css file.
33
-
-[ ] The webpage is properly committed and pushed to a branch on GitHub.
34
-
-[ ] The articles section contains three distinct articles, each with its own unique image, title, summary, and link.
35
-
-[ ] The page footer is fixed to the bottom of the viewport.
36
-
-[ ] The page layout closely match the wireframe.
15
+
<!--{{<objectives>}}>-->
37
16
38
-
### Developers must adhere to professional standards.
17
+
-[ ] Use semantic HTML tags to structure the webpage
18
+
-[ ] Create three articles, each including an image, title, summary, and a link
19
+
-[ ] Check a webpage against a wireframe layout
20
+
-[ ] Test web code using [Lighthouse](https://programming.codeyourfuture.io/guides/testing/lighthouse)
21
+
-[ ] Use version control by committing often and pushing regularly to GitHub
22
+
<!--{{</objectives>}}>-->
23
+
24
+
## Acceptance Criteria
39
25
40
-
> Before you say you're done: Is your code readable? Does it run correctly? Does it look professional?
26
+
-[✅] Semantic HTML tags are used to structure the webpage.
27
+
-[✅] The page scores 100 for Accessibility in the Lighthouse audit.
28
+
-[✅] The page header includes a title and description.
29
+
-[✅] The articles section has three unique articles, each including an image, title, summary, and a link.
30
+
-[✅] The page footer is fixed to the bottom of the viewport.
31
+
-[✅] The webpage is styled using a linked .css file.
32
+
-[✅] The webpage is properly committed and pushed to a branch on GitHub.
41
33
42
-
These practices reflect the level of quality expected in professional work.
43
-
They ensure your code is reliable, maintainable, and presents a polished, credible experience to users.
44
34
45
-
-[ ] My HTML code has no errors or warnings when validated using https://validator.w3.org/
46
-
-[ ] My code is consistently formatted
47
-
-[ ] My page content is free of typos and grammatical mistakes
This is the default, provided code and no changes have been made yet.
13
+
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.
14
14
</p>
15
15
</header>
16
16
<main>
17
17
<article>
18
-
<imgsrc="placeholder.svg" alt="" />
19
-
<h2>Title</h2>
18
+
<imgsrc="images/img_1.png" alt="" />
19
+
<h2>What is a Wireframe?</h2>
20
20
<p>
21
-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
22
-
voluptates. Quisquam, voluptates.
21
+
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.
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.
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.
0 commit comments