` stands for division, as in the division of content. Think of `
` as a way to group related elements on your webpage into logical sections. This helps with organization and makes it easier to apply styles later.
For example, let’s say we want to group related content together:
```html
The start of a very important section.
This section has content that’s all related in some way.
So we want to group it together and set it off from the rest of the page.
That’s why we wrapped all of this in a div!
```
Here, all the related content is wrapped inside a `
`, allowing us to treat it as a single section.
---
**The `span` Tag**
You can also group content on a smaller level—within a sentence or paragraph—using the `
` tag. Maybe you want to emphasize a few words or apply a different style to a specific part of a sentence. `` allows you to do that!
The syntax of `` is similar to `` and `` but doesn’t actually change how text looks. Instead, it is used for styling or scripting purposes.
For example:
```html
I want to call out these words in this sentence, but none of the other ones.
```
This allows developers to style only the text inside the ``, such as changing the color, font size, or adding special effects with CSS.
While `` and `
` don’t add meaning like semantic tags, they are essential tools for grouping and styling content effectively!
---
Your challenge: In a new `` container, add a header and list of café team members to the webpage.
Follow these steps:
**1. Beneath the `
![]()
` tag, open a new `
`.**
**2. In the `
`, add an `
` with text that reads: `Meet Our Team`.**
**3. After the ``, add an _unordered list_ element opening tag.**
**4. Add the following team members as list items and close the `