tryit_yourcode See Results <!DOCTYPE html> <html> <head> <style> /* Style the element with the id "technology" */ #heading { background-color: pink; color: black; padding: 30px; text-align: center; } /* Style all elements with the class name "menu " */ .menu { background-color: #ff5722; color: white; padding: 15px; } </style> </head> <body> <h2 id="heading"> Web Technologies </h2> <h2 class="menu"> HTML </h2> <p> HTML is markup language using which you can create your own website. </p> <h2 class="menu"> CSS </h2> <p> CSS is used to define styles of web pages. </p> <h2 class="menu"> Bootstrap </h2> <p> Boostrap is a CSS framework. </p> </body> </html>