--- id: 5f459fd48bdc98491ca6d1a3 title: Step 72 challengeType: 0 dashedName: step-72 --- # --description-- Vai avanti e aggiungi un altro elemento `hr` tra l'elemento `main` e l'elemento `footer`. # --hints-- Dovresti aggiungere un secondo elemento `hr`. ```js assert($('hr').length === 2); ``` Il nuovoelemento `hr` dovrebbe essere tra l'elemento `main` e l'elemento `footer`. ```js assert($('hr')[1].previousElementSibling.tagName === 'MAIN'); assert($('hr')[1].nextElementSibling.tagName === 'FOOTER'); ``` # --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; } hr { height: 2px; background-color: brown; border-color: brown; } h1, h2 { font-family: Impact, serif; } .item p { display: inline-block; } .flavor, .dessert { text-align: left; width: 75%; } .price { text-align: right; width: 25% } ```