Interactive online courses HTML Academy
2026-03-09 14:11 Diff

You need to use the tags you learned in the chapter on text markup. Follow the example and choose the appropriate text tags.

This additional version of the challenge is designed to reinforce your text markup skills.

Solution

The solution to the challenge will be available in a few minutes. Use it if you encounter difficulties. In the meantime, try to complete the challenge on your own.

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Achievements in Sports</title> <link rel="stylesheet" href="style.css"> </head> <body> <h1>Great Sporting Achievements</h1> <ul> <li><strong>Usain Bolt</strong> set the world record in the 100m.</li> <li><strong>Lionel Messi</strong> won his sixth Ballon d'Or.</li> </ul> <p><em>A history of greatness and inspiration for everyone!</em></p> </body> </html>