Computer Science, asked by maryammerchant4982, 6 months ago

write an HTLM code using special characters in it ?​

Answers

Answered by deeksha8116
0

Special Characters in HTML: Overview

There are times when it becomes necessary to display symbols or special characters in HTML that are not available on a standard keyboard, such as ©. You may also need to display special characters in HTML that have a special meaning in HTML (<,>,&, etc). To accomplish this, HTML uses the Special Character Entity tag. The tag takes the format of an ampersand (&), followed by the pound sign (#), followed by the number of the code, and ended by a semicolon (;). For example, the © (copyright) symbol can be displayed by using &#169;. There are literally hundreds of special character entities currently available. A few of the more common tags are listed in the table below.

Description Special Character Code

Acute Accent ´ &#180;

Ampersand & &#38;

Cent Sign ¢ &#162;

Copyright © &#169;

Dagger † &#8224;

Degree Sign ° &#186;

Division Sign ÷ &#247;

Euro € &#8363;

Fraction (one-half) ½ &#189;

Fraction (one-fourth) ¼ &#188;

Fraction (three-fourths) ¾ &#190;

Greater-than sign > &#62;

Left-angle quote « &#171;

Less-than sign < &#60;

Multiply sign x &#215;

Plus or minus sign ± &#177;

Quotation Mark (left) “ &#8220;

Quotation Mark (right) ” &#8221;

Registered Trademark ® &#174;

Right-angel quote » &#187;

Superscript one ¹ &#185;

Trademark

™ &#8482;

Special Characters in HTML: Instructions

To add special characters in HTML, type an ampersand followed by a pound sign (&#) at the place within your HTML document where you want to add a special character

Type the number of the proper code for the character you want to add.

Type a semicolon (;) to finish.

Answered by wanianasir517
0

Answer:

hope it will help you

Explanation:

Special Characters in HTML:

Instructions

To add special characters in HTML, type an ampersand followed by a pound sign (&#) at the place within your HTML document where you want to add a special character.

Type the number of the proper code for the character you want to add.

Type a semicolon (;) to finish.

Similar questions