<!DOCTYPE html> <html> <head> <title>HTML Entities</title> </head> <body> <!-- Non Breaking Space --> <p>Hi! Welcome to my website: www.vktech360.com</p> <!– HTML reserved keys --> <p>The code written inside the <head> tag are not display in the browser</p> <!-- Greater than and less than --> <p>5 > 2</p> <p>5 < 10</p> <!-- Copyright --> <p>©</p> <!-- Trade mark --> <p>®</p> <!-- Currency --> <p>¢</p> <p>€</p> <p>₹</p> <!-- Card symbol --> <p>♠</p> <p>♥</p> <p>♦</p> <p>♣</p> <!-- Computer code --> <code> <?php echo "Hello"; ?> </code> </body> </html>