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
2 changes: 1 addition & 1 deletion Form-Controls/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ <h1>Product Pick</h1>
</main>
<footer>
<!-- change to your name-->
<h2>By HOMEWORK SOLUTION</h2>
<h3>By HOMEWORK SOLUTION</h3>
</footer>
</body>
</html>
63 changes: 49 additions & 14 deletions Wireframe/index.html
Original file line number Diff line number Diff line change
@@ -1,33 +1,68 @@

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wireframe</title>
<title>Coding Concepts</title>
<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>
<h1>Basic concepts for coding </h1>
<h2>
On this website, you will gain insights into three major concepts for early-career developers,
namely the README file, wireframes, and Git branches.
</h2>
</header>
<main>
<article>
<img src="placeholder.svg" alt="" />
<h2>Title</h2>
<!-- <img src="placeholder.svg" alt="photo here" /> -->
<h3>What is a README File?</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
voluptates. Quisquam, voluptates.
A README file is the first thing users see when they discover your project.
It acts as both an introduction and instruction manual,
explaining what the project does, how to install it, and how to use it.
Good README files include project description, installation steps, usage examples,
and contribution guidelines. They serve as essential documentation that helps others
understand and work with your code effectively.
</p>
<a href="">Read more</a>
<a href="https://www.makeareadme.com/">Learn more about README files</a>
</article>
<article>
<!-- <img src="placeholder.svg" alt="photo here" /> -->
<h3>What is the Purpose of a Wireframe?</h3>
<p>
A wireframe is a simple, low-fidelity sketch that represents the skeletal structure
of a website or application. It focuses on layout, content placement,
and functionality without getting distracted by colors or styling.
Wireframes help developers, designers, and stakeholders agree on the basic structure
before investing time in detailed design and coding.
They serve as a blueprint for the final product.
</p>
<a href="https://www.productplan.com/glossary/wireframe/">Learn more about wireframes</a>
</article>
<article>
<!-- <img src="placeholder.svg" alt="photo here" /> -->
<h3>What is a Branch in Git?</h3>
<p>
In Git, a branch is an independent line of development that allows you to work
on new features or fixes without affecting the main codebase.
Think of it as creating a copy of your project where you can experiment safely.
When your work is complete and tested, you can merge the branch back into the main
project. Branches enable collaborative development and help maintain stable,
production-ready code.

</p>
<a href="https://www.w3schools.com/git/git_branch.asp?remote=github">
Learn more about Git branches</a>
</article>
</main>
<footer>
<p>
This is the default, provided code and no changes have been made yet.
</p>
<footer>
<p>All rights reserved. 2025 Coding Concepts. Introduction to Programming
- Basel Adoum - HYF</p>
</footer>
</footer>
</body>
</html>
</html>
Binary file added forms cheatsheet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.