Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions Wireframe/README.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css">
<title>README Files</title>
</head>
<body>
<header>
<h1>README Files</h1>
</header>
<main>
<article>
<img src="./images/readme.png" alt="">
<h2>What is the purpose of a README file? </h2>
<p>
A README file is used to give information so a user can ascertain key details of a program such as its function, how it works, how to set it up and general updates.
</p>
<a rel="html" href="index.html">Back</a>
</article>
</main>
</body>
</html>
24 changes: 24 additions & 0 deletions Wireframe/branch.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css">
<title>Git Branches</title>
</head>
<body>
<header>
<h1>Git Branches</h1>
</header>
<main>
<article>
<img src="./images/branch.png" alt="">
<h2>What is a branch in Git? </h2>
<p>
A branch in Git is a seperate workspace used to experiment or make changes without affecting the main project.
</p>
<a rel="html" href="index.html">Back</a>
</article>
</main>
</body>
</html>
Binary file added Wireframe/images/branch.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Wireframe/images/readme.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Wireframe/images/wireframes.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 26 additions & 9 deletions Wireframe/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,29 +4,46 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wireframe</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<header>
<h1>Wireframe</h1>
<h1>Web Development</h1>
<p>
This is the default, provided code and no changes have been made yet.
A series of articles to help you on your journey of web development
</p>
</header>
<main>
<article>
<img src="placeholder.svg" alt="" />
<h2>Title</h2>
<img src="./images/branch.png" alt="">
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Providing meaningful alt text is important because it ensures images are accessible to people using screen readers and also helps when images fail to load, giving users essential context about the content or function of the image.

Can you give a more descriptive alt value to all images?

<h2>Git Branches </h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
voluptates. Quisquam, voluptates.
In this article we will cover the purpose of a branch in git
</p>
<a href="">Read more</a>
<a rel="html" href="branch.html">Read more</a>
</article>

<article>
<img src="./images/wireframes.png" alt="">
<h2>Wireframes</h2>
<p>This article will cover the importance of a Wireframe</p>
<a rel="html" href="wireframe.html">Read more</a>
</article>

<article>
<img src ="./images/readme.png" alt="">
<h2>README files</h2>
<p>We shall look at the purpose of a README file</p>
<a rel="html" href="README.html">Read more</a>
</article>
</main>

<footer>
<hr>
<p>
This is the default, provided code and no changes have been made yet.
&copy; 2026: Contact us on
telephone: 07489763234 or
email: usersupport@hotmail.com
</p>
</footer>
</body>
Expand Down
36 changes: 30 additions & 6 deletions Wireframe/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,25 +16,39 @@ As well as useful links to learn more */
https://web.dev/articles/min-max-clamp
https://scrimba.com/learn-css-variables-c026
====== Design Palette ====== */

@import url("https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap");

:root {
--paper: oklch(7 0 0);
--ink: color-mix(in oklab, var(--color) 5%, black);
--font: 100%/1.5 system-ui;
--font: 100%/1.5 "Permanent Marker", bold;
--space: clamp(6px, 6px + 2vw, 15px);
--line: 1px solid;
--container: 1280px;
}

h1,
header p
{
text-align: center;
}

/* ====== Base Elements ======
General rules for basic HTML elements in any context */
body {
body{
background: var(--paper);
color: var(--ink);
font: var(--font);
text-transform: uppercase;
}

a {
padding: var(--space);
border: var(--line);
max-width: fit-content;
color: var(--color)

}
img,
svg {
Expand All @@ -49,11 +63,13 @@ main {
max-width: var(--container);
margin: 0 auto calc(var(--space) * 4) auto;
}
footer {
position: fixed;
bottom: 0;
footer,
footer hr {
margin-top: auto;
text-align: center;
min-width: span 2 ;
}

/* ====== Articles Grid Layout ====
Setting the rules for how articles are placed in the main element.
Inspect this in Devtools and click the "grid" button in the Elements view
Expand All @@ -65,7 +81,7 @@ main {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space);
> *:first-child {
> *:nth-child(1) {
grid-column: span 2;
}
}
Expand All @@ -87,3 +103,11 @@ article {
grid-column: span 3;
}
}

article h2{
margin-bottom:0px;
}

article p {
margin-top:4px;
}
Copy link
Copy Markdown
Contributor

@cjyuan cjyuan Jun 4, 2026

Choose a reason for hiding this comment

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

It seems the code is not formatted by an automated tool.

Can you follow this guide to enable VS Code's
"Format on Save" option or to use its "Format Document" command to format your HTML and CSS code?

Note: I meant to select the codes on lines 107-113.

24 changes: 24 additions & 0 deletions Wireframe/wireframe.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css">
<title>Wireframes</title>
</head>
<body>
<header>
<h1>Wireframes</h1>
</header>
<main>
<article>
<img src="./images/wireframes.png" alt="">
<h2>What is the purpose of a Wireframe?</h2>
<p>
A wireframe is used as a structural blueprint that allows a developer to envision how a project will look.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Supposedly this paragraph is what is expected in the "article summary".

No change needed.

</p>
<a rel="html" href="index.html">Back</a>
</article>
</main>
</body>
</html>
Loading