|
1 | | -<!DOCTYPE html> |
| 1 | +<!doctype html> |
2 | 2 | <html lang="en"> |
3 | 3 | <head> |
4 | 4 | <meta charset="UTF-8" /> |
|
8 | 8 | </head> |
9 | 9 | <body> |
10 | 10 | <header> |
11 | | - <h1>Wireframe</h1> |
| 11 | + <h1>WIREFRAME</h1> |
12 | 12 | <p> |
13 | | - This is the default, provided code and no changes have been made yet. |
| 13 | + A Wireframe is a simple visual layout or blueprint of a website, mobile |
| 14 | + app or software interface. It shows the basic structure of a page |
| 15 | + without detailed colors, images or final design elements. |
14 | 16 | </p> |
15 | 17 | </header> |
16 | 18 | <main> |
17 | 19 | <article> |
18 | | - <img src="placeholder.svg" alt="" /> |
19 | | - <h2>Title</h2> |
| 20 | + <img |
| 21 | + src="https://i.ytimg.com/vi/jeOfS90Flf8/maxresdefault.jpg" |
| 22 | + alt="Readme.md" |
| 23 | + /> |
| 24 | + <h2>What is the purpose of a README file?</h2> |
| 25 | + <h3>Summary</h3> |
20 | 26 | <p> |
21 | | - Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, |
22 | | - voluptates. Quisquam, voluptates. |
| 27 | + A README file is a simple text file (usually named README.md) that |
| 28 | + explains what your project about and how to use it. When someone opens |
| 29 | + a GitHub repo, the README is usually the first thing they see. It |
| 30 | + helps them quickly understand: |
23 | 31 | </p> |
24 | | - <a href="">Read more</a> |
| 32 | + <ul> |
| 33 | + <li>What the project does</li> |
| 34 | + <li>How to run it</li> |
| 35 | + <li>How to install it (if needed)</li> |
| 36 | + <li>Any important instructions or notes</li> |
| 37 | + </ul> |
| 38 | + <a href="https://en.wikipedia.org/wiki/README">Read more</a> |
| 39 | + </article> |
| 40 | + <article> |
| 41 | + <img |
| 42 | + src="https://cdn.sanity.io/images/599r6htc/regionalized/4c8605ad998d69b03a6eefb850cce5e23a0a96dc-2880x1440.png?w=2880&h=1440&q=75&fit=max&auto=format" |
| 43 | + alt="Wireframe" |
| 44 | + /> |
| 45 | + <h2>What is the purpose of a wireframe?</h2> |
| 46 | + <h3>Summary</h3> |
| 47 | + <p> |
| 48 | + A wireframe is a simple visual blueprint of a website, app, or digital |
| 49 | + product. It shows the structure and layout of a screen or page without |
| 50 | + focusing on final colors, graphics, or detailed styling. Think of it |
| 51 | + like an architectural sketch for a building: |
| 52 | + </p> |
| 53 | + <ul> |
| 54 | + <li>It outlines where things go</li> |
| 55 | + <li>It shows how users move through the interface</li> |
| 56 | + <li> |
| 57 | + It helps teams agree on functionality before design and development |
| 58 | + begin |
| 59 | + </li> |
| 60 | + </ul> |
| 61 | + <p> |
| 62 | + Wireframes are usually made with boxes, lines, placeholders and labels |
| 63 | + instead of polished visuals. |
| 64 | + </p> |
| 65 | + <a href="https://en.wikipedia.org/wiki/Website_wireframe">Read more</a> |
| 66 | + </article> |
| 67 | + <article> |
| 68 | + <img |
| 69 | + src="https://koliber.com/static/images/articles/trunk-flow.png" |
| 70 | + alt="Git Branch" |
| 71 | + /> |
| 72 | + <h2>What is a branch in Git?</h2> |
| 73 | + <h3>Summary</h3> |
| 74 | + <p> |
| 75 | + A branch in Git is an independent line of development. It lets you |
| 76 | + work on changes without affecting the main version of the project. You |
| 77 | + can think of a branch like a parallel workspace: |
| 78 | + </p> |
| 79 | + <ul> |
| 80 | + <li>The main project stays stable</li> |
| 81 | + <li>You make changes safely in another branch</li> |
| 82 | + <li>Later, you can merge those changes back into the main project</li> |
| 83 | + </ul> |
| 84 | + <a href="https://www.w3schools.com/GIT/git_branch.asp?remote=github" |
| 85 | + >Read more</a |
| 86 | + > |
25 | 87 | </article> |
26 | 88 | </main> |
27 | 89 | <footer> |
28 | | - <p> |
29 | | - This is the default, provided code and no changes have been made yet. |
30 | | - </p> |
| 90 | + <p>Web Development Basics | README, Wireframe & Git Branches</p> |
31 | 91 | </footer> |
32 | 92 | </body> |
33 | 93 | </html> |
0 commit comments