HTML Entities(HTML)
<!DOCTYPE html>
<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>
<div class="container">
<p>this is a paragraph</p>
</div>
<div class="container">
<p>this is another paragraph</p>
<p>paragraph is written like this <p> </p>
<p>pound is written like this £ </p>
<p>Copyright is written like this © </p>
<p>another character ⇛ </p>
<p>another character ¼ </p>
<p>blank is written like this ​ </p>
</div>
</body>
</html>
Comments
Post a Comment