zeek11.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 -This gives us space. £-This gives us
pound symbol. ©-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 paragraph with
(space between a and paragraph using html entity)</p>
<div class="container">
This is the symbol of pound £
</div>
<div class="container">
This is the symbol of copyright ©
</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
Post a Comment