diff --git a/Wireframe/README.md b/Wireframe/README.md
index 0ae0216d..8243b710 100644
--- a/Wireframe/README.md
+++ b/Wireframe/README.md
@@ -14,22 +14,22 @@ There are some provided HTML and CSS files you can use to get started. You can u
-- [ ] Use semantic HTML tags to structure the webpage
-- [ ] Create three articles, each including a title, summary, and a link
-- [ ] Check a webpage against a wireframe layout
-- [ ] Test web code using [Lighthouse](https://programming.codeyourfuture.io/guides/testing/lighthouse)
-- [ ] Use version control by committing often and pushing regularly to GitHub
+- [x] Use semantic HTML tags to structure the webpage
+- [x] Create three articles, each including a title, summary, and a link
+- [x] Check a webpage against a wireframe layout
+- [x] Test web code using [Lighthouse](https://programming.codeyourfuture.io/guides/testing/lighthouse)
+- [x] Use version control by committing often and pushing regularly to GitHub
## Acceptance Criteria
-- [ ] Semantic HTML tags are used to structure the webpage.
-- [ ] The page scores 100 for Accessibility in the Lighthouse audit.
-- [ ] The page header includes a title and description.
-- [ ] The articles section has three unique articles, each including a title, summary, and a link.
-- [ ] The page footer is fixed to the bottom of the viewport.
-- [ ] The webpage is styled using a linked .css file.
-- [ ] The webpage is properly committed and pushed to a branch on GitHub.
+- [x] Semantic HTML tags are used to structure the webpage.
+- [x] The page scores 100 for Accessibility in the Lighthouse audit.
+- [x] The page header includes a title and description.
+- [x] The articles section has three unique articles, each including a title, summary, and a link.
+- [x] The page footer is fixed to the bottom of the viewport.
+- [x] The webpage is styled using a linked .css file.
+- [x] The webpage is properly committed and pushed to a branch on GitHub.
## Resources
diff --git a/Wireframe/index.html b/Wireframe/index.html
index 0e014e53..f240597e 100644
--- a/Wireframe/index.html
+++ b/Wireframe/index.html
@@ -1,33 +1,71 @@
-
- This is the default, provided code and no changes have been made yet.
+ This webpage summarises the purpose of a README file and Wireframe. It also explores what a branch in Git is.
-
-
Title
+
+
What is the purpose of a README file?
- Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
- voluptates. Quisquam, voluptates.
+ A README file serves as a crucial piece of documentation for any
+ software project, providing essential information to users,
+ developers, and contributors. It typically outlines what the project
+ does, why it's useful, how to get started, and where to seek help.
+ Essentially, it acts as a welcome guide, making it easier for anyone
+ to understand and interact with the project.
+ The primary purpose of a wireframe is to outline the basic structural design and user experience of a website
+ or application before any detailed design work is done. It's a visual representation of the layout, content,
+ and functionality, helping designers, developers, and stakeholders understand the overall structure and flow.
+
+ A branch in Git is simply a lightweight movable pointer to one of these commits. The default branch name in
+ Git is master. As you start making commits, you're given a master branch that points to the last commit you
+ made. Every time you commit, the master branch pointer moves forward automatically.
+