|
1 | 1 | <!DOCTYPE html> |
2 | 2 | <html lang="en"> |
3 | 3 | <head> |
4 | | - <meta charset="UTF-8" /> |
5 | | - <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
6 | | - <title>Wireframe</title> |
7 | | - <link rel="stylesheet" href="Untitled-1.css" /> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | + <title>Wireframe - Exploring the Basics of Web Design</title> |
| 7 | + <meta name="description" content="An interactive engineering wireframe exploring fundamental web application building principles, README documentation structures, design mockups, and advanced Git version control branch strategies."> |
| 8 | + <link rel="stylesheet" href="Untitled-1.css"> |
8 | 9 | </head> |
9 | 10 | <body> |
10 | 11 |
|
11 | | - <header> |
| 12 | + <header class="page-header"> |
12 | 13 | <h1>Wireframe</h1> |
13 | 14 | <h2>Exploring the Basics of Web Design</h2> |
14 | 15 | </header> |
15 | 16 |
|
16 | 17 | <main class="article-container"> |
17 | | - <article class="featured-article"> |
18 | | - <img |
19 | | - src="https://images.unsplash.com/photo-1555066931-4365d14bab8c?auto=format&fit=crop&w=600&q=80" |
20 | | - alt="Office corridor layout graphic" /> |
21 | | - <h2>Purpose of a README File</h2> |
22 | | - <p> |
23 | | - A README file is a document that provides information about a project, |
24 | | - including its purpose, how to use it, and any other relevant details. |
25 | | - It serves as a guide for users and developers who may be interested in |
26 | | - the project. |
27 | | - </p> |
28 | | - <a href="https://www.freecodecamp.org/news/how-to-write-a-good-readme-file/" target="_blank" class="read-more-btn">Read more</a> |
| 18 | + <article class="card featured-article"> |
| 19 | + <div class="image-wrapper"> |
| 20 | + <img |
| 21 | + src="https://images.unsplash.com/photo-1555066931-4365d14bab8c?auto=format&fit=crop&w=600&q=80" |
| 22 | + alt="An enterprise monitor display presenting bright development programming code" |
| 23 | + width="600" |
| 24 | + height="400"> |
| 25 | + </div> |
| 26 | + <div class="card-content"> |
| 27 | + <h3>Purpose of a README File</h3> |
| 28 | + <div class="summary-box"> |
| 29 | + <p> |
| 30 | + A README file is a document that provides information about a project, |
| 31 | + including its purpose, how to use it, and any other relevant details. |
| 32 | + It serves as a guide for users and developers who may be interested in |
| 33 | + the project. |
| 34 | + </p> |
| 35 | + </div> |
| 36 | + <a href="https://www.freecodecamp.org/news/how-to-write-a-good-readme-file/" target="_blank" rel="noopener" class="read-more-btn">Read more</a> |
| 37 | + </div> |
29 | 38 | </article> |
30 | 39 |
|
31 | | - <article> |
32 | | - <img src="https://images.unsplash.com/photo-1516035069371-29a1b244cc32?auto=format&fit=crop&w=600&q=80" alt="Camera lens reflection graphic" /> |
33 | | - <h2>Purpose of a Wireframe</h2> |
34 | | - <p> |
35 | | - A wireframe is a visual representation of a website or application's |
36 | | - layout and structure. It shows the placement of elements, such as |
37 | | - text, images, and buttons, without the final design details. |
38 | | - Wireframes are used to plan and communicate the basic structure and |
39 | | - functionality of a product before development begins. |
40 | | - </p> |
41 | | - <a href="https://www.freecodecamp.org/news/how-to-create-a-wireframe/" target="_blank" class="read-more-btn">Read more</a> |
| 40 | + <article class="card landscape-card"> |
| 41 | + <div class="image-wrapper"> |
| 42 | + <img |
| 43 | + src="https://images.unsplash.com/photo-1516035069371-29a1b244cc32?auto=format&fit=crop&w=600&q=80" |
| 44 | + alt="A clean DSLR camera lens reflecting a sprawling modern city silhouette" |
| 45 | + width="600" |
| 46 | + height="400" |
| 47 | + loading="lazy"> |
| 48 | + </div> |
| 49 | + <div class="card-content"> |
| 50 | + <h3>Purpose of a Wireframe</h3> |
| 51 | + <div class="summary-box"> |
| 52 | + <p> |
| 53 | + A wireframe is a visual representation of a website or application's |
| 54 | + layout and structure. It shows the placement of elements, such as |
| 55 | + text, images, and buttons, without the final design details. |
| 56 | + </p> |
| 57 | + </div> |
| 58 | + <a href="https://www.freecodecamp.org/news/how-to-create-a-wireframe/" target="_blank" rel="noopener" class="read-more-btn">Read more</a> |
| 59 | + </div> |
42 | 60 | </article> |
43 | 61 |
|
44 | | - <article> |
45 | | - <img |
46 | | - src="https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1200&q=80" |
47 | | - alt="Hands typing code layout graphic" /> |
48 | | - <h2>What Is a Branch in Git?</h2> |
49 | | - <p> |
50 | | - A branch in Git is a separate line of development that allows you to |
51 | | - work on different features or bug fixes without affecting the main |
52 | | - codebase. It enables multiple developers to collaborate on a project |
53 | | - simultaneously and helps manage changes effectively. Branches can be |
54 | | - merged back into the main branch once the work is complete and tested. |
55 | | - </p> |
56 | | - <a href="https://www.freecodecamp.org/news/what-is-a-git-branch/" target="_blank" class="read-more-btn">Read more</a> |
| 62 | + <article class="card portrait-card"> |
| 63 | + <div class="image-wrapper"> |
| 64 | + <img |
| 65 | + src="https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1200&q=80" |
| 66 | + alt="Bright spacious contemporary office hallway layout interior architecture" |
| 67 | + width="600" |
| 68 | + height="400" |
| 69 | + loading="lazy"> |
| 70 | + </div> |
| 71 | + <div class="card-content"> |
| 72 | + <h3>What Is a Branch in Git?</h3> |
| 73 | + <div class="summary-box"> |
| 74 | + <p> |
| 75 | + A branch in Git is a separate line of development that allows you to |
| 76 | + work on different features or bug fixes without affecting the main |
| 77 | + codebase. It enables multiple developers to collaborate simultaneously. |
| 78 | + </p> |
| 79 | + </div> |
| 80 | + <a href="https://www.freecodecamp.org/news/what-is-a-git-branch/" target="_blank" rel="noopener" class="read-more-btn">Read more</a> |
| 81 | + </div> |
57 | 82 | </article> |
58 | 83 | </main> |
59 | 84 |
|
60 | | - <footer> |
| 85 | + <footer class="page-footer"> |
61 | 86 | <p>© 2026 Professional Web Developer Assignment</p> |
62 | 87 | </footer> |
63 | 88 |
|
|
0 commit comments