Sunday, 7 March 2021

HTML TUT-7 What Is HTML Entities ?

 What Is HTML Entities ?

Special Character make with the help of html Entities


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <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>dollar is written like this &dollar;</p>
        <p>Copywrite is written like this &copy;</p>
        <p>pound is written like this &pound;</p>
        <p>Empty is written like this &#8203;</p>
    </div>
    

</body>
</html>


No comments:

Python if / else

 Python if / else a1 = int ( input (" Enter the number: \n ")) a2 = int ( input (" Enter the number: \n ")) a3 = int ( i...