|
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 | + <title>Readme, branch and wireframe</title> |
7 | 7 | <link rel="stylesheet" href="style.css" /> |
8 | 8 | </head> |
9 | 9 | <body> |
10 | 10 | <header> |
11 | | - <h1>Wireframe</h1> |
12 | | - <p> |
13 | | - This is the default, provided code and no changes have been made yet. |
14 | | - </p> |
| 11 | + |
| 12 | + <h1>Readme, branch and wireframe</h1> |
| 13 | + <p>Brief definitions</p> |
15 | 14 | </header> |
16 | 15 | <main> |
| 16 | + <!-- Featured Article --> |
17 | 17 | <article> |
18 | | - <img src="placeholder.svg" alt="" /> |
19 | | - <h2>Title</h2> |
20 | | - <p> |
21 | | - Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, |
22 | | - voluptates. Quisquam, voluptates. |
23 | | - </p> |
24 | | - <a href="">Read more</a> |
| 18 | + <img src="https://docs.github.com/assets/cb-2058/mw-1440/images/help/branches/pr-retargeting-diagram1.webp" alt="Branch image" /> |
| 19 | + <h2>Branch</h2> |
| 20 | + <p>A branch is basically a pointer to a snapshot of your code so you can experiment with it without affecting the main codebase. It isn't a full copy because repos with multiple branches could get huge. Then you can merge your changes to the main codebase. It's like a sandbox.</p> |
| 21 | + <a href="https://en.wikipedia.org/wiki/Branching_(version_control)">Read More</a> |
25 | 22 | </article> |
26 | | - </main> |
| 23 | + |
| 24 | + <!-- Secondary Articles --> |
| 25 | + <article> |
| 26 | + <img src="https://media.geeksforgeeks.org/wp-content/uploads/20240702120959/Readme1.png" alt="Readme image" /> |
| 27 | + <h2>Readme</h2> |
| 28 | + <p>A readme is particularly important on GitHub since the code is in textual form and the user may need to compile it. The readme tells you what the project is for and how to use it, amongst other things.</p> |
| 29 | + <a href="https://en.wikipedia.org/wiki/README">Read More</a> |
| 30 | + </article> |
| 31 | + |
| 32 | + <article> |
| 33 | + <img src="https://support.microsoft.com/images/en-us/ae7333a6-5681-45ea-b482-e0de7c81cabd" alt="Wireframe image" /> |
| 34 | + <h2>Wireframe</h2> |
| 35 | + <p>A wireframe is a sketch of a website that shows where the title, subtitles, text, pictures and buttons are going to go but without real pictures and it has dummy text.</p> |
| 36 | + </article> |
| 37 | + </main> |
| 38 | + |
27 | 39 | <footer> |
28 | | - <p> |
29 | | - This is the default, provided code and no changes have been made yet. |
30 | | - </p> |
| 40 | + <p>Code Your Future</p> |
31 | 41 | </footer> |
32 | 42 | </body> |
33 | 43 | </html> |
0 commit comments