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
Binary file added Wireframe/background image.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions Wireframe/branch.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
71 changes: 71 additions & 0 deletions Wireframe/index1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
<!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>
<p>
a short describtion of wireframe, branch, and README.md file.
</p>
</header>
<main>
<article>
<img src="branch.svg" alt="" />
<h2>What is a branch in Git?</h2>
<p>
"What is a Git Branch?
In Git, a branch is like a separate workspace where you can make changes and try new ideas without affecting the main project. Think of it as a "parallel universe" for your code.

Why Use Branches?
Branches let you work on different parts of a project, like new features or bug fixes, without interfering with the main branch.

Common Reasons to Create a Branch
Developing a new feature
Fixing a bug
Experimenting with ideas"
</p>
<a href="https://www.w3schools.com/git/git_branch.asp">Read more</a>
</article>

<article>
<img src="readme.md.png" alt="" />
<h2>Why do we use README.md file?</h2>
<p>
" A README.md is a key document in repositories, especially on GitHub.
It introduces the project, explains its purpose, setup, and usage, and helps users and developers contribute effectively."
</p>
<a href="https://www.geeksforgeeks.org/git/what-is-readme-md-file/">Read more</a>
</article>

<article>
<img src="wireframe image.png" alt="" />
<h2>What is the purpose of a wireframe?</h2>
<p>
"Wireframes are basic blueprints that help teams align on requirements,
keeping UX design conversations focused and constructive.
Think of your wireframe as the skeleton of your app, website, or other final product.
Your wireframe shows the design team and stakeholders the bare-bones outlines of essential webpages,
components, and features, including:

Screen layouts
Navigation bars
Components of UX and UI design
Interactive elements"
</p>
<a href="https://www.figma.com/resource-library/what-is-wireframing/">Read more</a>
</article>
</main>
<footer>

<p>
All rights are reserved @RAW
</p>
</div>
</footer>
</body>
</html>
Binary file added Wireframe/readme.md.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 11 additions & 1 deletion Wireframe/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,19 @@ body {
background: var(--paper);
color: var(--ink);
font: var(--font);
background-color:aquamarine;
background-image: url("background image.jpg");
position: relative;
left: 0;
bottom: 0;
width: 100%;
text-align: center;
}
a {
padding: var(--space);
border: var(--line);
max-width: fit-content;
color: var(--ink);
}
img,
svg {
Expand All @@ -50,8 +58,10 @@ main {
margin: 0 auto calc(var(--space) * 4) auto;
}
footer {
position: fixed;
position: relative;
left: 0;
bottom: 0;
width: 100%;
text-align: center;
}
/* ====== Articles Grid Layout ====
Expand Down
Binary file added Wireframe/wireframe image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading