Skip to content

Commit a5d2e63

Browse files
added code to the other html files
1 parent 1219d03 commit a5d2e63

3 files changed

Lines changed: 72 additions & 0 deletions

File tree

Wireframe/README.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<link rel="stylesheet" href="style.css">
7+
<title>README Files</title>
8+
</head>
9+
<body>
10+
<header>
11+
<h1>README Files</h1>
12+
</header>
13+
<main>
14+
<article>
15+
<img src="./images/readme.png" alt="">
16+
<h2>What is the purpose of a README file? </h2>
17+
<p>
18+
A README file is used to give information so a user can ascertain key details of a program such as its function, how it works, how to set it up and general updates.
19+
</p>
20+
<a rel="html" href="index.html">Back</a>
21+
</article>
22+
</main>
23+
</body>
24+
</html>

Wireframe/branch.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<link rel="stylesheet" href="style.css">
7+
<title>Git Branches</title>
8+
</head>
9+
<body>
10+
<header>
11+
<h1>Git Branches</h1>
12+
</header>
13+
<main>
14+
<article>
15+
<img src="./images/branch.png" alt="">
16+
<h2>What is a branch in Git? </h2>
17+
<p>
18+
A branch in Git is a seperate workspace used to experiment or make changes without affecting the main project.
19+
</p>
20+
<a rel="html" href="index.html">Back</a>
21+
</article>
22+
</main>
23+
</body>
24+
</html>

Wireframe/wireframe.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<link rel="stylesheet" href="style.css">
7+
<title>Wireframes</title>
8+
</head>
9+
<body>
10+
<header>
11+
<h1>Wireframes</h1>
12+
</header>
13+
<main>
14+
<article>
15+
<img src="./images/wireframes.png" alt="">
16+
<h2>What is the purpose of a Wireframe?</h2>
17+
<p>
18+
A wireframe is used as a structural blueprint that allows a developer to envision how a project will look.
19+
</p>
20+
<a rel="html" href="index.html">Back</a>
21+
</article>
22+
</main>
23+
</body>
24+
</html>

0 commit comments

Comments
 (0)