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
75 changes: 49 additions & 26 deletions Wireframe/index.html
Original file line number Diff line number Diff line change
@@ -1,33 +1,56 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wireframe</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>Wireframe</h1>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wireframe</title>
<link rel="stylesheet" href="style.css" />
</head>

<body>
<header>
<h1>Wireframe</h1>
<p>An article about webpages and their purpose</p>
</header>

<main>
<article>
<img src="placeholder.svg" alt="An image depicting a wireframe" />
<h2>README</h2>
<p>
This is the default, provided code and no changes have been made yet.
The purpose of a README file is to provide information about a project,
including how-to instructions and tasks to be done.
</p>
</header>
<main>
<article>
<img src="placeholder.svg" alt="" />
<h2>Title</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
voluptates. Quisquam, voluptates.
</p>
<a href="">Read more</a>
</article>
</main>
<footer>
<a href="#">Read more</a>
</article>

<article>
<img src="placeholder.svg" alt="An image depicting a wireframe" />
<h2>Wireframe</h2>
<p>
This is the default, provided code and no changes have been made yet.
A wireframe is a visual guide that represents the skeletal framework of
a website or application, outlining the layout and structure of its
content and functionality.
</p>
</footer>
</body>
<a href="#">Read more</a>
</article>

<article>
<img src="placeholder.svg" alt="An image depicting a wireframe" />
<h2>Git Branch</h2>
<p>
A branch in Git is a personal workspace used to work on tasks independently.
</p>
<a href="#">Read more</a>
</article>
</main>

<footer>
<p>
If you have any questions, follow this link to the
<a href="https://www.productplan.com/glossary/wireframe/">Wireframe glossary</a>.
</p>
<p>Adedolapo — January 2026</p>
</footer>
</body>
</html>
20 changes: 20 additions & 0 deletions Wireframe/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,32 @@ https://www.w3.org/WAI/tutorials/page-structure/regions/
main {
max-width: var(--container);
margin: 0 auto calc(var(--space) * 4) auto;
padding-bottom: 80px;
}
header {
text-align: center;
}
header p{
text-align: center;
}
p {
margin: var(--space) 0;
text-align: justify;
}


footer {
position: fixed;
bottom: 0;
width: 100%;
text-align: center;

display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

/* ====== 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 Down
Loading