diff --git a/guide/english/certifications/responsive-web-design/basic-html-and-html5/create-a-bulleted-unordered-list/index.md b/guide/english/certifications/responsive-web-design/basic-html-and-html5/create-a-bulleted-unordered-list/index.md index c2045eceb8..d48b3a568c 100644 --- a/guide/english/certifications/responsive-web-design/basic-html-and-html5/create-a-bulleted-unordered-list/index.md +++ b/guide/english/certifications/responsive-web-design/basic-html-and-html5/create-a-bulleted-unordered-list/index.md @@ -25,3 +25,62 @@ Not correct: ``` Good luck! + +### Solution +Firstly, we need to remove the `

` elements and replace it with `

  • `, as well as add a third `
  • ` as shown below: + +#### Before removal of `

    ` and replacement with `

  • ` +```html +

    Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.

    +

    Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.

    +``` + +#### After removal of `

    ` and replacement with `

  • ` +```html +
  • Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
  • +
  • Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.
  • +
  • Your third sentence.
  • +``` +Afterwards, we need to place a `