Skip to content

Commit cd68e2e

Browse files
committed
add meta description tag
1 parent 4bf1afe commit cd68e2e

1 file changed

Lines changed: 11 additions & 3 deletions

File tree

Wireframe/index.html

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
<head>
55
<meta charset="UTF-8" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<meta name="description"
8+
content="A quickstart guide to building, documenting, and maintaining web projects with GitHub. Learn about README files, wireframes, and Git branching." />
79
<title>Wireframe</title>
810
<link rel="stylesheet" href="style.css" />
911
</head>
@@ -15,7 +17,8 @@ <h1>GitHub Web Project Essentials</h1>
1517
</header>
1618
<main>
1719
<article class="card" id="main-article">
18-
<img src="./assets/readme.png" alt="" class="article-img" />
20+
<img src="./assets/readme.webp" srcset="./assets/readme-small.webp 400w, ./assets/readme.webp 768w"
21+
sizes="(max-width: 600px) 400px, 768px" alt="Keeping your README fresh and engaging" class="article-img" />
1922
<h2 class="article-title">What Is the Purpose of a README File</h2>
2023
<p class="article-text">
2124
A good README file serves as a project's "front door," acting as a crucial piece of documentation that explains
@@ -28,7 +31,10 @@ <h2 class="article-title">What Is the Purpose of a README File</h2>
2831
aria-label="Read more about README files">Read more</a>
2932
</article>
3033
<article class="card">
31-
<img src="./assets/wireframe_design.jpeg" alt="Wireframe design" class="article-img" />
34+
<img src="./assets/wireframe_design.webp"
35+
srcset="./assets/wireframe_design-small.webp 400w, ./assets/wireframe_design.webp 924w"
36+
sizes="(max-width: 600px) 400px, (max-width: 1200px) 50vw, 640px" alt="Wireframe design example"
37+
class="article-img" />
3238
<h2 class="article-title">What Is the Purpose of a Wireframe?</h2>
3339
<p class="article-text">
3440
A wireframe is a simplified visual guide used in web and app design to outline the structure, layout, and
@@ -42,7 +48,9 @@ <h2 class="article-title">What Is the Purpose of a Wireframe?</h2>
4248
aria-label="Read more about wireframes">Read more</a>
4349
</article>
4450
<article class="card">
45-
<img src="./assets/git-branch.webp" alt="Git Basic Terms" class="article-img" />
51+
<img src="./assets/git-branch.webp" srcset="./assets/git-branch-small.webp 400w, ./assets/git-branch.webp 650w"
52+
sizes="(max-width: 600px) 400px, (max-width: 1200px) 50vw, 640px" alt="Git branches visual concept"
53+
class="article-img" />
4654
<h2 class="article-title">What Is a Branch in Git?</h2>
4755
<p class="article-text">
4856
In version control systems like Git, a branch is a separate line of development that diverges from the main

0 commit comments

Comments
 (0)