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
78 changes: 51 additions & 27 deletions Wireframe/index.html
Original file line number Diff line number Diff line change
@@ -1,33 +1,57 @@
<!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>Development Concepts</h1>
<p>
Understanding essential tools and practices in web development and version control.
</p>
</header>

<main>
<article>
<img src="placeholder.svg" alt="Documentation icon representing README files" />
<h2>What is the purpose of a README file?</h2>
<p>
This is the default, provided code and no changes have been made yet.
A README file is a documentation file that provides essential information about a project. It typically
includes project description, installation instructions, usage examples, and contribution guidelines.
</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="https://www.makeareadme.com/" target="_blank">Learn more about README files</a>
</article>

<article>
<img src="placeholder.svg" alt="Wireframe layout diagram" />
<h2>What is the purpose of a 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. It focuses on layout,
content placement, and functionality without using colors, graphics, or stylized fonts.
</p>
</footer>
</body>
</html>
<a href="https://www.productplan.com/glossary/wireframe/" target="_blank">Learn more about wireframes</a>
</article>

<article>
<img src="placeholder.svg" alt="Git branch diagram showing parallel development" />
<h2>What is a branch in Git?</h2>
<p>
A branch in Git is a parallel version of a repository. It allows you to work on different features or fixes
independently without affecting the main codebase, enabling collaborative development.
</p>
<a href="https://git-scm.com/book/en/v2/Git-Branching-Branches-in-a-Nutshell" target="_blank">Learn more about Git branches</a>
</article>
</main>

<footer>
<p>
Development Concepts &copy; 2025 - All rights reserved
</p>
</footer>
</body>
</html>
2 changes: 2 additions & 0 deletions Wireframe/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ footer {
position: fixed;
bottom: 0;
text-align: center;
background-color: white;
width: 100%;
}
/* ====== Articles Grid Layout ====
Setting the rules for how articles are placed in the main element.
Expand Down