Skip to content
Closed
Changes from 2 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
86 changes: 71 additions & 15 deletions Wireframe/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,87 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wireframe</title>
<title>Wireframe Task</title>
<meta
name="description"
content="A simple explanation of README files, wireframes, and Git branches."
/>
<link rel="stylesheet" href="style.css" />
</head>

<body>
<header>
<h1>Wireframe</h1>
<h1>Web Development Fundamentals</h1>
<p>
This is the default, provided code and no changes have been made yet.
This page explains README files, wireframes, and Git branches using a
simple wireframe layout.
</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>
<section>
<!-- README ARTICLE -->
<article>
<img
src="placeholder.svg"
alt="Illustration representing a README file"
/>
<h2>What is a README file?</h2>
<p>
A README file explains what a project is about, how to use it, and
any important information someone needs before contributing to the
project.
</p>
<a
href="https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes"
target="_blank"
>
Read more
</a>
</article>

<!-- WIREFRAME ARTICLE -->
<article>
<img
src="wireframe.png"
alt="Example of a webpage wireframe layout"
/>
<h2>What is a wireframe?</h2>
<p>
A wireframe is a simple visual guide that shows the structure and
layout of a webpage before design and development begins.
</p>
<a
href="https://www.figma.com/resource-library/what-is-a-wireframe/"
target="_blank"
>
Read more
</a>
</article>

<!-- GIT BRANCH ARTICLE -->
<article>
<img
src="placeholder.svg"
alt="Diagram representing Git branches"
/>
<h2>What is a Git branch?</h2>
<p>
A Git branch allows developers to work on new features or fixes
without affecting the main version of a project.
</p>
<a
href="https://docs.github.com/en/get-started/using-git/about-branches"
target="_blank"
>
Read more
</a>
</article>
</section>
</main>

<footer>
<p>
This is the default, provided code and no changes have been made yet.
</p>
<p>© 2026 CYF Wireframe Task</p>
</footer>
</body>
</html>