Skip to main content

HTML Tutorial 11

 <!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>This is another     paragraph with two spaces</p>


<!-- <p>Paragraph is written like this &lt;p&gt;  </p> -->

<p>Paragraph is written like this &lt;p&gt;  </p>



<!-- <p>Pound is written like this &pound;  </p> -->

<p>Pound is written like this &pound;  </p>


<!-- <p>copyright is written like this &copy;  </p> -->

<p>copyright is written like this &copy;  </p>



<!-- <p>Another character is &LeftArrowRightArrow;  </p> -->

<p>Another character is &LeftArrowRightArrow;  </p>



<!-- <p>Female character is &female;  </p> -->

<p>Female character is &female;  </p>



<!-- <p>Male character is &male;  </p> -->

<p>Male character is &male;  </p>






</div>


</body>

</html>

Comments

Popular posts from this blog

Side Navigation Bar CSS

 *{     background-color: #353b48; } body{     margin: 0px;     padding: 0px;     font-family: cursive; } .navbar{     position: absolute;     top: 50%;     transform: translateY(-50% ); }      .navbar a{     text-decoration: none;     display:block;     margin: 8px 0px;    padding: 8px;    width: 130px;    font-size: 22px;    /* background-color: #e74c3c; */    color: white;    margin-left: -100px;    border-radius: 10px;    transition: 0.6s; } .navbar a:hover{     margin-left: 0px; }

Web 2 Sign in

 <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>Sign Up window</title>     <style>         * {             box-sizing: border-box;         }         body {             /* justify-content: center; */             /* align-items: center; */             margin: 0px;             padding: 0px;             font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;             color: black;             background-color: #e9faff;         }         .cont {   ...

Side Navigation Bar 1

 <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>Document</title>     <link rel="stylesheet" href="style.css"> </head> <body>     <div class="navbar">         <a href="#" style="background-color: #27ae60;">Home</a>         <a href="#" style="background-color: #c0392b;">About</a>         <a href="#" style="background-color: #ba21d8;">Gellary</a>         <a href="#" style="background-color: #2980b9;">Contact</a>     </div> </body> </html>