--- id: 5f3ef6e0a81099d9a697b550 title: Step 65 challengeType: 0 dashedName: step-65 --- # --description-- Inside the `footer`, add a `p` element. Then, nest an anchor (`a`) element in the `p` that links to `https://www.freecodecamp.org` and has the text `Visit our website`. # --hints-- You should not modify the existing `footer` element. ```js assert($('footer').length === 1); ``` Your new `p` element should be nested within your `footer` element. ```js assert($('footer').children('p').length === 1); ``` Your new `a` element should be nested within your new `p` element. ```js assert($('footer').children('p').children('a').length === 1); ``` Your new `a` element should have the text `Visit our website`. ```js assert($('footer').find('a')[0].innerText.match(/Visit our website/i)); ``` Your new `a` element should link to `https://www.freecodecamp.org`. Remember that `a` elements use the `href` attribute to create a link. ```js assert($('footer').find('a').attr('href') === 'https://www.freecodecamp.org'); ``` # --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% } ```