
Anonymous A. answered 12/21/19
HTML Expert with 10+ years of experience
Hello,
Several things here.
The first one is, why are you validating? Validators are nice and all, but as long as you are responsible with your markup and adhere to guidelines and standards, generally speaking, you don't have to validate your pages. Sometimes those validators become more a hassle than a solution.
Make sure your markup is optimized, clean and well structured.
I personally haven't validated in like forever, and I don't think I will ever validate again. I know what I'm doing and I don't need a validator to tell me (or not if it's acting up, lol) that I'm doing my job well, lol.
The second thing is try using this meta tag instead:
To answer your questions specifically.
- Yes, it's likely it will affect the rendering of the Greek text, albeit not the "appearance" of the page.
- HTML Tidy isn't likely defining your page as UTF-16, that's likely your text editor instead. Either stick with DW or download Sublime Text (I use ST) or Atom or Visual Studio Code.
- Tidy HTML merely cleans up and beautifies your markup, that's it, so I wouldn't think it's the offending piece here.
Also, try saving your file as UTF-8.
Check out this post in StackOverflow about a similar issue: can't show greek letters in browser
Hope this helps.
Regards.