11

I just did a pretty major typesetting session putting things in order for a specific prayer in Hebrew named Tikkun Haklali. It's here on jsfiddle.net. Unfortunately, when I tried to save the HTML and CSS to my computer, I get something like this:

enter image description here

rather than something like this:

enter image description here

What gives? Character encoding? If so, what should I save my text file in?

Naftuli Kay
  • 75,812
  • 80
  • 244
  • 374
  • how are you saving it? I suggest firefox, and save as "web page, complete", and make sure you're using UTF-8 (go to View > Character Encoding > Unicode (UTF-8)) – jackJoe Oct 24 '11 at 09:06

1 Answers1

23

HTML Charset Encoding: UTF-8. That way the browser will render it correctly.

<meta charset="utf-8">

Place that right after <head>

MarioRicalde
  • 8,065
  • 5
  • 35
  • 41