|
2 | 2 | <html lang="en"> |
3 | 3 | <head> |
4 | 4 | <meta charset="UTF-8" /> |
5 | | - <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
6 | | - <title>Wireframe</title> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"/> |
| 6 | + <title>Planning Your Codebase</title> |
7 | 7 | <link rel="stylesheet" href="style.css" /> |
8 | 8 | </head> |
| 9 | + |
9 | 10 | <body> |
10 | 11 | <header> |
11 | | - <h1>Wireframe</h1> |
12 | | - <p> |
13 | | - This is the default, provided code and no changes have been made yet. |
14 | | - </p> |
| 12 | + <h1>Planning Your Codebase</h1> |
| 13 | + <p>A quick guide for beginners to structure, version, and prepare code.</p> |
15 | 14 | </header> |
| 15 | + |
16 | 16 | <main> |
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> |
25 | | - </article> |
| 17 | + <section> |
| 18 | + <article> |
| 19 | + <h2>What is Git?</h2> |
| 20 | + <p>[summary goes here]</p> |
| 21 | + <a href="#">Read more</a> |
| 22 | + </article> |
| 23 | + |
| 24 | + <article> |
| 25 | + <h2>Why Do Developers Use Git?</h2> |
| 26 | + <p>[summary goes here]</p> |
| 27 | + <a href="#">Read more</a> |
| 28 | + </article> |
| 29 | + |
| 30 | + <article> |
| 31 | + <h2>What is a Branch in Git?</h2> |
| 32 | + <p>[summary goes here]</p> |
| 33 | + <a href="#">Read more</a> |
| 34 | + </article> |
| 35 | + </section> |
26 | 36 | </main> |
| 37 | + |
27 | 38 | <footer> |
28 | | - <p> |
29 | | - This is the default, provided code and no changes have been made yet. |
30 | | - </p> |
| 39 | + <p>Built with ❤️ by R.M.B</p> |
31 | 40 | </footer> |
32 | 41 | </body> |
33 | 42 | </html> |
0 commit comments