11 Program to demonstrate Entities in HTML

Program:

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <title>HTML Entities</title>

    <style>

        body{

            font-family: Arial, sans-serif;

        }

    </style>

</head>

<body>



    <!-- HTML Entities Examples -->



    <!-- Reg -->

    &reg;

    <!-- Copy right -->

    &copy;

    <!-- Dollar Symbol &#36; -->

    &#36;

    <!-- Rupee Symbol &#8377; -->

    &#8377;





</body>

</html>


Output:

Entities in HTML

Previous
Next Post »