-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
we learned about Emphasis `<em>` element.
- Loading branch information
1 parent
70e5485
commit 98fee09
Showing
2 changed files
with
43 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,45 @@ | ||
# This is Step 25 | ||
|
||
To place emphasis on a specific word or phrase, you can use the em element. | ||
To place emphasis on a specific word or phrase, we can use the `<em></em>` element. | ||
|
||
## Example | ||
```HTML | ||
<p><em>Emphasis</em></p> | ||
``` | ||
## Task | ||
Emphasize the word *`love`* in the `figcaption` element by wrapping it in an emphasis `<em></em>` element. | ||
|
||
**• Add** | ||
|
||
```HTML | ||
<html> | ||
<body> | ||
<main> | ||
<h1>CatPhotoApp</h1> | ||
<section> | ||
<h2>Cat Photos</h2> | ||
<!-- TODO: Add link to cat photos --> | ||
<p>See more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a> in our gallery.</p> | ||
<a href="https://freecatphotoapp.com"><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a> | ||
</section> | ||
|
||
<section> | ||
<h2>Cat Lists</h2> | ||
<h3>Things cats love:</h3> | ||
<ul> | ||
<li>cat nip</li> | ||
<li>laser pointers</li> | ||
<li>lasagna</li> | ||
</ul> | ||
<figure> | ||
<img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/lasagna.jpg" alt="A slice of lasagna on a plate."> | ||
<figcaption>Cats <em>love</em> lasagna.</figcaption> <!-- Add Here --> | ||
</figure> | ||
</section> | ||
</main> | ||
</body> | ||
</html> | ||
|
||
``` | ||
|
||
|
||
Emphasize the word love in the figcaption element by wrapping it in an emphasis em element. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters