Skip to content

Commit 4ecfe29

Browse files
committed
fix validation issues
1 parent a49bcda commit 4ecfe29

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

Wireframe/index.html

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4-
<meta charset="UTF-8" />
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
4+
<meta charset="UTF-8" >
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<title>Planning Your Codebase</title>
7-
<link rel="stylesheet" href="style.css" />
7+
<link rel="stylesheet" href="style.css" >
88
</head>
99

1010
<body>
@@ -14,13 +14,13 @@ <h1>Planning Your Codebase</h1>
1414
</header>
1515

1616
<main>
17-
<section>
17+
<section aria-label="Articles">
1818
<article>
1919
<img
2020
src="https://docs.github.com/assets/cb-55933/mw-1440/images/help/repository/readme-links.webp"
2121
alt="Example of ReadMe file on GitHub"
22-
/>
23-
<hr />
22+
>
23+
<hr >
2424
<h2>What is the purpose of a README file?</h2>
2525
<p>The purpose of a README file is to document a project on a repository, whether
2626
it is a personal project or a collaborative effort. It can contain things like
@@ -33,8 +33,8 @@ <h2>What is the purpose of a README file?</h2>
3333
<img
3434
src="https://www.godaddy.com/resources/wp-content/uploads/2025/05/Ecommerce-website-wireframe.jpg?size=1080x0"
3535
alt="Example of a website wireframe diagram"
36-
/>
37-
<hr />
36+
>
37+
<hr >
3838
<h2>What is the Purpose of a Wireframe?</h2>
3939
<p>It is like a blueprint. It outlines the structure and layout of a website or application before development begins. It lays out where things like buttons, text, and images will go.
4040
You're mapping out the user experience and interface, which helps identify potential issues and make improvements early on.
@@ -46,8 +46,8 @@ <h2>What is the Purpose of a Wireframe?</h2>
4646
<img
4747
src="https://i0.wp.com/digitalvarys.com/wp-content/uploads/2019/06/GIT-Branchand-its-Operations.png?fit=1921%2C1057&ssl=1"
4848
alt="Visual explanation of branching in Git"
49-
/>
50-
<hr />
49+
>
50+
<hr >
5151
<h2>What is a Branch in Git?</h2>
5252
<p>A branch in Git is a lightweight pointer to a commit. It allows developers to work on different versions of a project simultaneously without affecting the main codebase.</p>
5353
<a href="https://git-scm.com/book/en/v2/Git-Branching-Branches-in-a-Nutshell#:~:text=A%20branch%20in%20Git%20is,Note">Read more</a>

0 commit comments

Comments
 (0)