Important Notice:

Course Content
Heading Tag / Paragraph Tag
0/2
Horizontal Rules (HR element)
0/1
Font Element
0/1
Image Element
0/1
HTML Basic (Chapter 3) M2-R5.1
About Lesson
Emozi:-

                HTML Emojis लगभग Letters और Characters की तरह ही होते हैं। जिनको UTF- 8 के Through इन Characters को Define किया जाता है। UTF- 8 दुनिया में के लगभग हर Characters और Symbols को Cover करने का काम करता है

The HTML charset Attribute

HTML में Charset Attribute का Use होता है ये इसलिए किया जाता है, ताकि Web Browser को ये पता चल जाये की आप कौन सा Character Set को Use कर रहे हैं। और HTML Page को बिना किसी Error के Display कर सके। Charset Attribute को Tag में Use करते है। Meta Tag में Charset को कुछ इस तरह define किया जाता है:

<meta charset= “UTF-8”>

UTF- 8 Characters

UTF-8 characters की तो हर Characters को हम Keyword के जरिये Type नहीं पाते है और न ही कर सकते है। इसके लिए हम Entity Numbers का Use करते है। For Example अगर आपको A, B और C को Entity Numbers से Display कराना है तो ये आप Easily कर सकते है। जैसे की आप A को 65 entity numbers से define करवा सकते है।

<!DOCTYPE html>

<html>

<head>

<title>UTF-8 Characters</title> </head>

<body>

<p>This is A B C</p>

<p>This is also A B C </p>

</body>

</html>

HTML Emojis Characters

अगर आपको HTML Emojis का Use करना है तो उसके लिए UTF- 8 Alphabet का Use किया जाता है

 <!DOCTYPE html>

<html>

<head>

<title>HTML Emojis</title> </head>

<body>

<p style=”font-size: 58px”> 😂 💗 ⏰ ⏳ ⌚ ☔ ⚾ ⛅ ⛽ ✈ </p>

</body>

</html>

 

Emozi:-

     HTML Emojis are almost like letters and characters. Which are defined through these characters of UTF-8. UTF-8 works to cover almost every characters and symbols in the world.

The HTML charset Attribute

               Charset Attribute is used in HTML, this is done so that the web browser knows which character set you are using. And can display the HTML page without any error. Charset attribute is used in tag. Charset in Meta Tag is defined like this: <meta charset= “UTF-8”>

UTF- 8 Characters

                UTF-8 characters, we are not able to type every character through keyword nor can we do it. For this we use Entity Numbers. For example, if you want to display A, B and C with Entity Numbers, then you can do this easily. Like you can define A with 65 entity numbers. 

<!DOCTYPE html>

<html>

<head>

<title>UTF-8 Characters</title> </head>

<body>

<p>This is A B C</p>

<p>This is also A B C </p>

</body>

</html>

HTML Emojis Characters

                               If you want to use HTML Emojis then UTF-8 alphabet is used for that.

<!DOCTYPE html>

<html>

<head>

<title>HTML Emojis</title> </head>

<body>

<p style=”font-size: 58px”> 😂 💗 ⏰ ⏳ ⌚ ☔ ⚾ ⛅ ⛽ ✈ </p>

</body>

</html>

error: Content is protected !!