 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to include the character encoding in HTML?
Character encoding is a method of converting bytes into characters. To validate or display an HTML document properly, a program must choose a proper character encoding.
Use the <meta> element, to set the charset attribute and specify the character encoding for the HTML document −
<!DOCTYPE html> <html> <head> <meta charset = "UTF-8"> </head> <body> <p>Click following link</p> <a href = "https://www.qries.com" target = "_self">Welcome to Qries</a> </body> </html>
Advertisements
 