tryit_yourcode See Results <!DOCTYPE html> <html> <head> <style> .title{ color: #fff; background-color: #ff5722; padding: 5px; } .description{ font-size: 20px; border: 1px solid #ff5722; padding: 5px; } .important-text{ color: #ff5722; } </style> </head> <body> <h2 class="title"> What is HTML? </h2> <p class="description"> HTML is basically markup language using which you can create your own website. HTML stands for <span class="important-text"> Hypertext Markup Language </span>. It contains elements and the elements are represented by tags. </p> </body> </html>