From 376bd6b7c670909b1764e87133e016e7a84f6bbd Mon Sep 17 00:00:00 2001
From: Niangh Ciang
Date: Sat, 23 May 2026 14:01:29 +0100
Subject: [PATCH 1/8] Create three articles, each including an image, title,
summary, and a link
---
Wireframe/index.html | 65 +++++++++++++++++++++++++++++++++++++-------
1 file changed, 55 insertions(+), 10 deletions(-)
diff --git a/Wireframe/index.html b/Wireframe/index.html
index 0e014e535..c05a1ded5 100644
--- a/Wireframe/index.html
+++ b/Wireframe/index.html
@@ -1,4 +1,4 @@
-
+
@@ -8,20 +8,65 @@
-
Wireframe
-
- This is the default, provided code and no changes have been made yet.
-
+
Understanding Project Structure
+
A simple guide to README files, wireframes, and Git branches.
+
-
-
Title
+
+
What is the purpose of a README file?
+
+ A README file is the foundational documentation for a software,
+ dataset, or coding project. It serves as a project's "front door,"
+ designed to help users quickly understand what the project does, how
+ to install and use it, and how to contribute.
+
+ The purpose of a wireframe is to act as a blueprint for a website or
+ app. It provides a basic, stripped-down visual guide that outlines
+ layout, structure, and functionality before any colors, images, or
+ code are applied, ensuring everyone aligns on the project's
+ foundation.
+
- Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
- voluptates. Quisquam, voluptates.
+ 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. Note.
The purpose of a wireframe is to act as a blueprint for a website or
app. It provides a basic, stripped-down visual guide that outlines
@@ -56,7 +60,7 @@
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
From f5550f28781b7c1154eb97d08499f65041e218a4 Mon Sep 17 00:00:00 2001
From: Niangh Ciang
Date: Sat, 23 May 2026 15:15:55 +0100
Subject: [PATCH 8/8] Add CSS underline class for article headings
---
Wireframe/style.css | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/Wireframe/style.css b/Wireframe/style.css
index 74517171f..fbadec3db 100644
--- a/Wireframe/style.css
+++ b/Wireframe/style.css
@@ -69,3 +69,7 @@ article {
grid-column: span 3;
}
}
+
+.underline {
+ text-decoration: underline;
+}