|
1 | | -<!DOCTYPE html> |
| 1 | +<!doctype html> |
2 | 2 | <html lang="en"> |
3 | 3 | <head> |
4 | 4 | <meta charset="UTF-8" /> |
5 | 5 | <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
6 | | - <title>Wireframe</title> |
| 6 | + <meta |
| 7 | + name="description" |
| 8 | + content="This page explains the purpose of wireframe and README file and also tells about what a branch is in Git" |
| 9 | + /> |
| 10 | + <title> |
| 11 | + The purpose of wireframe and readme and what branch means in git |
| 12 | + </title> |
7 | 13 | <link rel="stylesheet" href="style.css" /> |
8 | 14 | </head> |
9 | 15 | <body> |
10 | 16 | <header> |
11 | | - <h1>Wireframe</h1> |
| 17 | + <h1>What is Branch in Git, The Purpose of README & Wireframing</h1> |
12 | 18 | <p> |
13 | | - This is the default, provided code and no changes have been made yet. |
| 19 | + This page covers three essential concepts in software development. It |
| 20 | + explains what a Git branch is and why it is used to manage code changes |
| 21 | + safely, explores the purpose of a README file and how it helps others |
| 22 | + understand your project, and walks through the wireframing process from |
| 23 | + initial structural sketches to a fully designed application page. |
14 | 24 | </p> |
15 | 25 | </header> |
16 | 26 | <main> |
17 | 27 | <article> |
18 | | - <img src="placeholder.svg" alt="" /> |
19 | | - <h2>Title</h2> |
| 28 | + <img |
| 29 | + src="https://super-monitoring.com/blog/wp-content/uploads/2022/01/readme.png.webp" |
| 30 | + alt="A laptop and book representing a README documentation guide" |
| 31 | + fetchpriority="high" |
| 32 | + /> |
| 33 | + <h2>The Purpose of README</h2> |
20 | 34 | <p> |
21 | | - Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, |
22 | | - voluptates. Quisquam, voluptates. |
| 35 | + A README file contains descriptive information about the content of a |
| 36 | + directory in which the file is located. The scope of the information |
| 37 | + generally includes the files of the directory, and may include |
| 38 | + descendant directories, or even the full directory tree. The name is |
| 39 | + intended to draw a user's attention to important and orientational |
| 40 | + information about the directory content. A rule of thumb for one |
| 41 | + unfamiliar with the content of a directory is to read the README file |
| 42 | + before other files. Although the name README is often used, there are |
| 43 | + many other similar names used for the same purpose including "Read Me" |
| 44 | + and "READ.ME". Sometimes the file name includes an extension to |
| 45 | + indicate the file format such as "README.txt" for plain text or |
| 46 | + "README.md" for Markdown.The file's name is often all caps. |
23 | 47 | </p> |
24 | | - <a href="">Read more</a> |
| 48 | + <a href="https://en.wikipedia.org/wiki/README" |
| 49 | + >Read more about README files</a |
| 50 | + > |
| 51 | + </article> |
| 52 | + <article> |
| 53 | + <img |
| 54 | + src="https://storage.ghost.io/c/c8/0c/c80ce826-734b-44fa-90f7-43d0deb4f5bc/content/images/size/w1200/2025/03/Immerse---What-is-a-wireframe.png" |
| 55 | + alt="Wireframe progression showing structural sketch to fully designed app page" |
| 56 | + /> |
| 57 | + <h2>The Purpose of Wireframe</h2> |
| 58 | + <p> |
| 59 | + Wireframing is a way to design a website service at the structural |
| 60 | + level. A wireframe is commonly used to layout content and |
| 61 | + functionality on a page which takes into account user needs and user |
| 62 | + journeys. Wireframes are used early in the development process to |
| 63 | + establish the basic structure of a page before visual design and |
| 64 | + content is added. |
| 65 | + </p> |
| 66 | + <a href="https://www.experienceux.co.uk/faqs/what-is-wireframing/" |
| 67 | + >Read more about Wireframing</a |
| 68 | + > |
| 69 | + </article> |
| 70 | + <article> |
| 71 | + <img |
| 72 | + src="https://graphite.com/images/content/guides/git-merge-how-does-it-work/1711136885-merged-branch.jpg" |
| 73 | + alt="Git branch diagram showing branching and merging workflow" |
| 74 | + /> |
| 75 | + <h2>What is Branch in Git</h2> |
| 76 | + <p> |
| 77 | + In Git, a branch is like a separate workspace where you can make |
| 78 | + changes and try new ideas without affecting the main project. Think of |
| 79 | + it as a "parallel universe" for your code. |
| 80 | + </p> |
| 81 | + <a href="https://www.w3schools.com/GIT/git_branch.asp?remote=github" |
| 82 | + >Read more about Git branches</a |
| 83 | + > |
25 | 84 | </article> |
26 | 85 | </main> |
27 | 86 | <footer> |
28 | 87 | <p> |
29 | | - This is the default, provided code and no changes have been made yet. |
| 88 | + This page covered three essential concepts every developer should know: |
| 89 | + Git branches, README files, and wireframing. |
30 | 90 | </p> |
31 | 91 | </footer> |
32 | 92 | </body> |
|
0 commit comments