--- id: 5f76967fad478126d6552b0d title: Part 35 challengeType: 0 --- ## Description
Next, you want to align the price to the right. Add a class named `price` to your `p` element that has `3.00` as its text.
## Tests
```yml tests: - text: Test 1 testString: '' ```
## Challenge Seed
```html Camper Cafe Menu ```
```css body { background-image: url(https://tinyurl.com/coffee-beans-fcc); } h1, h2, p { text-align: center; } .menu { width: 80%; background-color: burlywood; margin-left: auto; margin-right: auto; } .flavor { text-align: left; } ```