French Vanilla
3.00
---
id: 5f46e8284aae155c83015dee
title: Step 89
challengeType: 0
dashedName: step-89
---
# --description--
The menu looks good, but other than the coffee beans background image, it is mainly just text.
Under the `Coffee` heading, add an image using the url `https://cdn.freecodecamp.org/curriculum/css-cafe/coffee.jpg`. Give the image an `alt` value of `coffee icon`.
# --hints--
You should have an `` tag. Remember that `img` elements are self-closing.
```js
assert($('img').length === 1);
```
Your `img` element should have a `src` attribute of `https://cdn.freecodecamp.org/curriculum/css-cafe/coffee.jpg`.
```js
assert($('img').attr('src') === 'https://cdn.freecodecamp.org/curriculum/css-cafe/coffee.jpg');
```
Your `img` element should have an `alt` attribute of `coffee icon`.
```js
assert($('img').attr('alt').match(/coffee icon/i));
```
# --seed--
## --seed-contents--
```html