Insert special Characters in HTML5

We can use HTML code to insert special characters into your web page text. Special characters are that do not usually appear on your keyboard.

The code used to insert special characters is called entities. Entities consist of numbers are name codes preceded by an ampersand and ending with a semicolon such as ½ for the fraction 1/2 or ¶ for a paragraph symbol.

Insert special Characters

Step 1: Click where you want to insert a special character.

Step 2: Type the number or name cod for the character, with an ampersand (&) before the code and a semicolon (;) following the code.

Result Output

<!DOCTYPE html>
<html>
    <Head>
        <Title>Coding thai</Title>
    </Head>
    <body>
        Type of Web Developer 
        <hr>
         A front end developer has one general responsibility:
      to ensure that website visitors can easily interact with the page
        <hr>
       <small> &copy;Copyright 2022 Codingthai</small>
    </body>
</html>

Follow us on Social Media For More

FacebookInstagramPinterest

Leave a Comment