|
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>Wireframe Task</title> |
| 7 | + <meta |
| 8 | + name="description" |
| 9 | + content="A simple explanation of README files, wireframes, and Git branches." |
| 10 | + /> |
7 | 11 | <link rel="stylesheet" href="style.css" /> |
8 | 12 | </head> |
| 13 | + |
9 | 14 | <body> |
10 | 15 | <header> |
11 | | - <h1>Wireframe</h1> |
| 16 | + <h1>Web Development Fundamentals</h1> |
12 | 17 | <p> |
13 | | - This is the default, provided code and no changes have been made yet. |
| 18 | + This page explains README files, wireframes, and Git branches using a |
| 19 | + simple wireframe layout. |
14 | 20 | </p> |
15 | 21 | </header> |
| 22 | + |
16 | 23 | <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> |
| 24 | + <section> |
| 25 | + <!-- README ARTICLE --> |
| 26 | + <article> |
| 27 | + <img |
| 28 | + src="placeholder.svg" |
| 29 | + alt="Illustration representing a README file" |
| 30 | + /> |
| 31 | + <h2>What is a README file?</h2> |
| 32 | + <p> |
| 33 | + A README file explains what a project is about, how to use it, and |
| 34 | + any important information someone needs before contributing to the |
| 35 | + project. |
| 36 | + </p> |
| 37 | + <a |
| 38 | + href="https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes" |
| 39 | + target="_blank" |
| 40 | + > |
| 41 | + Read more |
| 42 | + </a> |
| 43 | + </article> |
| 44 | + |
| 45 | + <!-- WIREFRAME ARTICLE --> |
| 46 | + <article> |
| 47 | + <img |
| 48 | + src="wireframe.png" |
| 49 | + alt="Example of a webpage wireframe layout" |
| 50 | + /> |
| 51 | + <h2>What is a wireframe?</h2> |
| 52 | + <p> |
| 53 | + A wireframe is a simple visual guide that shows the structure and |
| 54 | + layout of a webpage before design and development begins. |
| 55 | + </p> |
| 56 | + <a |
| 57 | + href="https://www.figma.com/resource-library/what-is-a-wireframe/" |
| 58 | + target="_blank" |
| 59 | + > |
| 60 | + Read more |
| 61 | + </a> |
| 62 | + </article> |
| 63 | + |
| 64 | + <!-- GIT BRANCH ARTICLE --> |
| 65 | + <article> |
| 66 | + <img |
| 67 | + src="placeholder.svg" |
| 68 | + alt="Diagram representing Git branches" |
| 69 | + /> |
| 70 | + <h2>What is a Git branch?</h2> |
| 71 | + <p> |
| 72 | + A Git branch allows developers to work on new features or fixes |
| 73 | + without affecting the main version of a project. |
| 74 | + </p> |
| 75 | + <a |
| 76 | + href="https://docs.github.com/en/get-started/using-git/about-branches" |
| 77 | + target="_blank" |
| 78 | + > |
| 79 | + Read more |
| 80 | + </a> |
| 81 | + </article> |
| 82 | + </section> |
26 | 83 | </main> |
| 84 | + |
27 | 85 | <footer> |
28 | | - <p> |
29 | | - This is the default, provided code and no changes have been made yet. |
30 | | - </p> |
| 86 | + <p>© 2026 CYF Wireframe Task</p> |
31 | 87 | </footer> |
32 | 88 | </body> |
33 | 89 | </html> |
0 commit comments