--- id: 5f3ef6e0b431cc215bb16f55 title: Step 66 challengeType: 0 dashedName: step-66 --- # --description-- Add a second `p` element below the one with the link and give it the text `123 Free Code Camp Drive`. # --hints-- You should add a second `p` element to your `footer`. ```js assert($('footer').children('p').length === 2); ``` Your new `p` element should have the text `123 Free Code Camp Drive`. Make sure your new element comes after your existing element. ```js assert($('footer').children('p').last().text().match(/123 Free Code Camp Drive/i)); ``` # --seed-- ## --seed-contents-- ```html Cafe Menu ``` ```css body { background-image: url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg); font-family: sans-serif; } h1 { font-size: 40px; } h2 { font-size: 30px; } .established { font-style: italic; } h1, h2, p { text-align: center; } .menu { width: 80%; background-color: burlywood; margin-left: auto; margin-right: auto; padding: 20px; max-width: 500px; } h1, h2 { font-family: Impact, serif; } .item p { display: inline-block; } .flavor, .dessert { text-align: left; width: 75%; } .price { text-align: right; width: 25% } ```