Skip to content

London | May-2025 | Gideon Defar | Wireframe #725

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 15 commits into
base: main
Choose a base branch
from
31 changes: 25 additions & 6 deletions Wireframe/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,26 +7,45 @@
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<header>
<h1>Wireframe</h1>
<p>
This is the default, provided code and no changes have been made yet.
A wireframe is a simple visual guide that shows the layout and structure of a webpage or app.
</p>
</header>
<main>
<article>
<img src="placeholder.svg" alt="" />
<h2>Title</h2>
<h2>What is the purpose of a README file?</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
voluptates. Quisquam, voluptates.
A README file explains a project’s purpose,
how to use it, and any setup or installation instructions.
</p>
<a href="">Read more</a>
</article>
<article>
<img src="placeholder.svg" alt="" />
<h2>What is the purpose of a wireframe?</h2>
<p>
A wireframe shows the basic layout and structure of a webpage or app,
helping plan design and functionality before development.
</p>
<a href="">Read more</a>
</article>
<article>
<img src="placeholder.svg" alt="" />
<h2>What is a branch in Git?</h2>
<p>
A branch in Git is a separate line of development,
allowing you to work on changes without affecting the main code.
</p>
<a href="">Read more</a>
</article>

</main>
<footer>
<p>
This is the default, provided code and no changes have been made yet.
This is the updated code and changes have been made.
</p>
</footer>
</body>
Expand Down
5 changes: 5 additions & 0 deletions Wireframe/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@ body {
background: var(--paper);
color: var(--ink);
font: var(--font);
}

header {
text-align: center;
}

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