--- id: 5f76967fad478126d6552b0d title: Step 35 challengeType: 0 dashedName: step-35 --- # --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. # --hints-- You should add the `price` class to your `p` element. ```js assert(code.match(//i)); ``` You should only have one element with the `price` class. ```js assert($('.price').length === 1); ``` Your `price` class should be on the `p` element with the text `3.00`. ```js assert($('.price')[0].innerText.match(/3\.00/i)); ``` # --seed-- ## --seed-contents-- ```html Cafe Menu ``` ```css body { background-image: url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg); } h1, h2, p { text-align: center; } .menu { width: 80%; background-color: burlywood; margin-left: auto; margin-right: auto; } .flavor { text-align: left; } ```