Skip to content
Closed
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
8 changes: 8 additions & 0 deletions Wireframe/articles.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
1. What is the purpose of a README file?
Developers use readme files to explain their project to others.

1. What is the purpose of a wireframe?
Wireframes are a visual guide to what a product should look like.

1. What is a branch in Git?
Git branches are effectively a pointer to a snapshot of your changes.
Binary file added Wireframe/git_branch_picture.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
81 changes: 54 additions & 27 deletions Wireframe/index.html
Original file line number Diff line number Diff line change
@@ -1,33 +1,60 @@
<!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>Wireframe</h1>
<p>
This page is updated by Hasan Demiroz on March.
</p>
</header>
<main>
<article>
<img src="readme.webp" alt="readme picture" />
<h2>README.md</h2>
<p>
This is the default, provided code and no changes have been made yet.
A README file serves as a crucial introductory document for a project, providing essential information about its
purpose, functionality, installation, usage, and other relevant details to users, collaborators, and
maintainers.
</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://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes">Read
more</a>
</article>
<article>
<img src="wireframe.png" alt="wireframe picture" />
<h2>Wireframe</h2>
<p>
This is the default, provided code and no changes have been made yet.
Wireframing is fancy way of saying "rough sketching" 🎨✏️. The objective is not to have a pixel-perfect
rendering of the idea but rather to draw the minimum necessary to communicate. A wireframe should be as simple
as possible to convey the concept to the observer without clutter or confusion.
</p>
</footer>
</body>
</html>
<a href="https://github.com/dwyl/learn-wireframing/blob/master/README.md">Read
more</a>
</article>
<article>
<img src="git_branch_picture.jpg" alt="git branching picture" />
<h2>Branch in Git</h2>
<p>
The main idea behind the Git flow branching strategy is to isolate your work into different types of branches.
There are different branch types.
</p>
<a href="https://www.w3schools.com/git/git_branch.asp?remote=github">Read
more</a>
</article>
</main>
<footer>
<p>
This is updated by Hasan Demiroz on March.
</p>
</footer>
</body>

</html>
Binary file added Wireframe/readme.webp
Binary file not shown.