diff --git a/absolute-beginners/frontend-beginner/html/adding-images.mdx b/absolute-beginners/frontend-beginner/html/adding-images.mdx
index caa8805..305e48e 100644
--- a/absolute-beginners/frontend-beginner/html/adding-images.mdx
+++ b/absolute-beginners/frontend-beginner/html/adding-images.mdx
@@ -7,6 +7,8 @@ description: "Learn how to bring your website to life with pictures."
A website without pictures is like a book without a cover, it can be great, but it's much harder to grab someone's attention! Today, you are going to learn how to embed images into your pages.
+
+
## The "No-Sandwich" Tag
Most tags we've learned (`
`, `
`, `
`) are like sandwiches: they have a start and an end.
@@ -22,7 +24,6 @@ To show an image, we need two very important "Attributes" (extra pieces of info)
```html
-
```
### Why is `alt` text so important?
@@ -39,7 +40,6 @@ You can link to any image already on the internet.
```html
-
```
### 2. Using a Local File (Internal)
@@ -48,16 +48,16 @@ If you have a photo on your computer, put it in the same folder as your `index.h
```html
-
```
+
+
## Changing the Size
Sometimes an image is way too big and takes up the whole screen. You can control the size directly in HTML using `width` and `height`.
```html
-
```
:::warning Beginner Alert!
@@ -79,7 +79,6 @@ Let’s combine everything! Try to build this in your `index.html`:
Coffee
-
```
## Summary Checklist
diff --git a/absolute-beginners/frontend-beginner/html/final-project.mdx b/absolute-beginners/frontend-beginner/html/final-project.mdx
index 37b2c73..6b362d4 100644
--- a/absolute-beginners/frontend-beginner/html/final-project.mdx
+++ b/absolute-beginners/frontend-beginner/html/final-project.mdx
@@ -9,6 +9,8 @@ Congratulations! You’ve moved from "What is a tag?" to understanding the full
Your mission is to create a **Personal Portfolio Page**. This site will tell the world who you are, what you’re learning, and how to contact you.
+
+
## The Project Blueprint
Before we code, let's look at the structure we want to achieve. We are going to use **Semantic HTML** to keep it professional.
@@ -49,6 +51,8 @@ Create a final ``.
Add a `