Skip to content

Commit dbce8f7

Browse files
committed
footer text align to center
1 parent 956c48d commit dbce8f7

1 file changed

Lines changed: 39 additions & 29 deletions

File tree

Wireframe/index.html

Lines changed: 39 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -2,57 +2,67 @@
22
<html lang="en">
33

44
<head>
5-
<meta charset="UTF-8" />
6-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Wireframe</title>
8-
<link rel="stylesheet" href="style.css" />
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>
8+
All about Wireframes, READMEs and Git Branches
9+
</title>
10+
<link rel="stylesheet" href="style.css">
911
</head>
1012

1113
<body>
1214
<header>
13-
<h1>Wireframe</h1>
14-
<p class="wireframe-title">
15-
A wireframe is a basic visual guide used in design, especially in web
16-
and app development, to represent the structure and layout of a page or
17-
interface before the final design is created.
15+
<h1>
16+
All about Wireframes, READMEs and Git Branches
17+
</h1>
18+
<p>
19+
This page explores wireframes in web design, the significance of README
20+
files in software projects and the role of branches in Git version
21+
control.
1822
</p>
1923
</header>
20-
2124
<main>
2225
<article>
23-
<img src="placeholder.svg" alt="Placeholder image" />
24-
<h2>Purpose of a README File</h2>
26+
<img src="placeholder.svg" alt="">
27+
<h2>Wireframe</h2>
2528
<p>
26-
A README file serves as the main introduction and documentation for a project,
27-
typically found in the root directory of software repositories (like those on GitHub).
28-
<a href="https://www.mygreatlearning.com/blog/readme-file/">Read more</a>
29+
Wireframe provides a foundational structural template for web pages.
30+
It serves as a communication tool for stakeholders, web designers and
31+
developers, providing a simple structural view of the rendered web
32+
page.
2933
</p>
34+
<a
35+
href="https://www.wix.com/blog/what-are-wireframes?experiment_id=%5E%5E40312ac7-ca22-4ba2-bd8e-0b726ed32275%5E">Read
36+
more</a>
3037
</article>
31-
3238
<article>
33-
<img src="placeholder.svg" alt="Placeholder image" />
34-
<h2>Purpose of a Wireframe</h2>
39+
<img src="placeholder.svg" alt="">
40+
<h2>README Files</h2>
3541
<p>
36-
The purpose of a wireframe is to serve as a blueprint or visual guide for designing a website,
37-
app, or digital interface before any actual design or coding begins.
38-
<a href="https://balsamiq.com/learn/articles/what-are-wireframes/">Read more</a>
42+
README files offer essential explanatory information about a codebase
43+
within a repository, including usage instructions and details about
44+
its features.
3945
</p>
46+
<a href="https://www.makeareadme.com/">Read more</a>
4047
</article>
41-
4248
<article>
43-
<img src="placeholder.svg" alt="Placeholder image" />
44-
<h2>A Branch in Git</h2>
49+
<img src="placeholder.svg" alt="">
50+
<h2>Git branches</h2>
4551
<p>
46-
A branch in Git is essentially a lightweight, movable pointer to a commit. It allows you
47-
to work on different versions of a project without affecting the main codebase.
48-
<a href="https://www.w3schools.com/git/git_branch.asp">Read more</a>
52+
Git branches are a fundamental feature that enables users to develop
53+
features and make commits independently of the main branch. This
54+
facilitates parallel development by multiple teams without causing
55+
conflicts directly.
4956
</p>
57+
<a href="https://git-scm.com/book/en/v2/Git-Branching-Branches-in-a-Nutshell">Read more</a>
5058
</article>
5159
</main>
52-
5360
<footer>
5461
<p>
55-
Author: Gideon Defar</p>
62+
&copy; 2025 Your Project/Website Name. All Rights Reserved. | <a href="mailto:contact@yourdomain.com">Contact
63+
Us</a> | <a href="/about">About</a> | <a href="/sitemap">Sitemap</a>
64+
</p>
5665
</footer>
5766
</body>
67+
5868
</html>

0 commit comments

Comments
 (0)