Skip to content

Northwest | May-2025 | Sofayas Solomon | Wireframe #576

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 6 commits into
base: main
Choose a base branch
from
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
37 changes: 28 additions & 9 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>
<h1>Wireframe</h1>
<header class="centered-header">
<h1>Understanding README, Wireframes, and Git Branches</h1>
<p>
This is the default, provided code and no changes have been made yet.
Learn about the essential tools used by developers to plan, document, and collaborate in web projects.
</p>
</header>

<main>
<article>
<img src="placeholder.svg" alt="" />
<h2>Title</h2>
<img src="placeholder.svg" alt="README illustration" />
<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 what your project is, how to install and use it, and any other important info.
</p>
<a href="">Read more</a>
<a href="https://www.makeareadme.com/">Learn more</a>
</article>

<article>
<img src="placeholder.svg" alt="Wireframe illustration" />
<h2>What is the purpose of a wireframe?</h2>
<p>
A wireframe is a simple sketch of your website layout, used to plan structure before building it.
</p>
<a href="https://careerfoundry.com/en/blog/ux-design/what-is-a-wireframe/">Learn more</a>
</article>

<article>
<img src="placeholder.svg" alt="Git branch illustration" />
<h2>What is a branch in Git?</h2>
<p>
A branch in Git lets you make changes to your code without changing the main project. It's great for testing features.
</p>
<a href="https://www.atlassian.com/git/tutorials/using-branches">Learn more</a>
</article>
</main>

<footer>
<p>
This is the default, provided code and no changes have been made yet.
Built as part of a wireframe and Git learning project.
</p>
</footer>
</body>
Expand Down
3 changes: 3 additions & 0 deletions Wireframe/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -87,3 +87,6 @@ article {
grid-column: span 3;
}
}
.centered-header {
text-align: center;
}