zeek11.html

 

<!DOCTYPE html>


<!-- In this web page we learn that somethings or some characters or
 some tags is not written in html for this we use html entities.
  Some of the html entities are &nbsp;-This gives us space. &pound;-This gives us
 pound symbol. &copy;-gives us copyright symbol -->

<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>HTML Entities</title>
</head>
<body>
    <h2>HTML Entities along with its effect on webpage</h2>
   
    <p>This is a &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;paragraph with 
(space between a and paragraph using html entity)</p>

    <div class="container">
        This is the symbol of pound &pound;
    </div>
    
    <div class="container">
        This is the symbol of copyright &copy;
    </div>

    <a href="https://dev.w3.org/html5/html-author/charref"target="_blank">
-CLICK HERE FOR character entity reference chart for more study.
</a>


</body>
</html>

Comments

Popular posts from this blog

INDEX OF ZEEK HTML,CSS and JS