InterviewSolution
Saved Bookmarks
| 1. |
How to fix “No character encoding declared at document level” in HTML Document |
|
Answer» No character ENCODING declared at the document level for below document can be as below.
This can be fixed by declaring the Character Set. Use UTF-8 Character encoding and add this markup to head SECTION. <!DOCTYPE html> <html> <head > <META charset ="UTF-8"> <title>HTML5 Programming</title> </head> <body> <body> </html> |
|