Skip to content
10 changes: 5 additions & 5 deletions Wireframe/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ There are some provided HTML and CSS files you can use to get started. You can u

<!--{{<objectives>}}>-->

- [ ] Use semantic HTML tags to structure the webpage
- [ ] Create three articles, each including a 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
- [x] Use semantic HTML tags to structure the webpage
- [x] Create three articles, each including a title, summary, and a link
- [x] Check a webpage against a wireframe layout
- [x] Test web code using [Lighthouse](https://programming.codeyourfuture.io/guides/testing/lighthouse)
- [x] Use version control by committing often and pushing regularly to GitHub
<!--{{</objectives>}}>-->

## Acceptance Criteria
Expand Down
47 changes: 38 additions & 9 deletions Wireframe/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,54 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wireframe</title>
<title>Wireframe to Webcode Assignment-Sprint 1</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>Wireframe</h1>
<h1>Wireframe Webcode Assignment</h1>
<p>
This is the default, provided code and no changes have been made yet.
This is the initial DRAFT version of this page. <!--First line updated to reflect draft status-->

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead of saying that your webpage is a draft of the page, can you think of a sentence that summarizes your webpage?

</p>
</header>
<main>
<article>
<img src="placeholder.svg" alt="" />
<h2>Title</h2>
<img src="https://alexwlchan.net/images/2021/readmes-for-open-science/slide5_2x.avif" alt="Welcome mat, Headline "What is a ReadMe"" />
<h2>What is the Purpose of a Readme File</h2>
<p>
A readme file serves as a guide for users and developers, providing
essential information about a project, including its purpose,
installation instructions, usage guidelines, and contribution
protocols. It helps ensure that everyone involved understands how to
effectively use and contribute to the project.
</p>
<a href="https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes">Read more</a>
</article>
<article>
<img src="https://www.productplan.com/wp-content/uploads/2019/03/wireframe-1024x576.png" alt="Wireframe example, Headline "What is the Purpose of a Wireframe"" />

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you check the 'What is the purpose of a wireframe' image? Currently it shows a broken link.

<h2>What is the Purpose of a Wireframe</h2>
<p>
A wireframe is a visual guide that represents the skeletal framework
of a website or application. Its purpose is to outline the layout,
structure, and functionality of a page before the actual design and
development process begins. Wireframes help stakeholders visualize
the user interface, plan content placement, and ensure that the user
experience is intuitive and effective.
</p>
<a href="https://www.productplan.com/glossary/wireframe/">Read more</a>
</article>
<article>
<img src="https://git-scm.com/images/logos/downloads/Git-Logo-2Color.png" alt="Git logo, Headline "What is a branch in Git"" />
<h2>What is a branch in Git</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
voluptates. Quisquam, voluptates.
A branch in Git is a separate line of development that allows
multiple versions of a project to coexist. It enables developers to
work on new features, bug fixes, or experiments without affecting the
main codebase. Branches facilitate collaboration, as team members can
work independently and later merge their changes back into the main
branch when ready.
</p>
<a href="">Read more</a>
<a href="https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-branches">Read more</a>
</article>
</main>
<footer>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you think of any useful information you can add to your footer instead of the default text?
Other trainees have included:

  • name
  • link to CYF socials
  • your email

Any of these 👆 will be an improvement to the default text. 🙂

Expand All @@ -30,4 +59,4 @@ <h2>Title</h2>
</p>
</footer>
</body>
</html>
</html>
6 changes: 6 additions & 0 deletions Wireframe/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ body {
color: var(--ink);
font: var(--font);
}

header{
text-align: center;
padding: calc(var(--space) * 2) var(--space);
}

a {
padding: var(--space);
border: var(--line);
Expand Down