Skip to content
Open
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
49 changes: 32 additions & 17 deletions Wireframe/index.html
Original file line number Diff line number Diff line change
@@ -1,33 +1,48 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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>
<p>
This is the default, provided code and no changes have been made yet.
</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 class="articles-container">
<h2 class="visually-hidden">Core Web Development Articles</h2>

<article>
<img src="readme-concept.jpg" alt="A laptop screen showing a project documentation file">
<h3>What is the purpose of a README file?</h3>
<p>A README file is the front page of a repository. It introduces the project, explains how to install or run the code, and guides other developers on how to contribute.</p>
<a href="https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes">Read more about READMEs</a>
</article>

<article>
<img src="wireframe-concept.jpg" alt="A simple sketch of a website layout using lines and boxes">
<h3>What is the purpose of a wireframe?</h3>
<p>A wireframe acts as a blueprint for a user interface. It defines the structural layout, content hierarchy, and functionality of a page before any visual design or code is added.</p>
<a href="https://en.wikipedia.org/wiki/Website_wireframe">Read more about Wireframes</a>
</article>

<article>
<img src="git-branch-concept.jpg" alt="A diagram showing a main code branch splitting into a feature branch">
<h3>What is a branch in Git?</h3>
<p>A branch is an independent line of development in Git. It allows you to work on new features or fixes safely without affecting the stable 'main' codebase until it is fully tested.</p>
<a href="https://git-scm.com/book/en/v2/Git-Branching-Branches-in-a-Nutshell#:~:text=A%20branch%20in%20Git%20is,branch%20pointer%20moves%20forward%20automatically.">Read more about Git Branches</a>
</article>

</section>
</main>

<footer>
<p>
This is the default, provided code and no changes have been made yet.
<p>&copy; 2026 Code Your Future Onboarding Coursework. Created by Tiffany.</p>
</p>
</footer>
</body>
</html>
</html>
Loading