You should probably use the es_ES.UTF-8 locale; using ISO-8859-15 should provide those letters, but my experience is that it should be used only if you need to. UTF-8 is the way to go..if you have problems with html pages you created, make sure that you (1) save the files using UTF-8 encoding (for example that) -- in kwrite I think you can select the encoding in one of the menus -- and that (2) in the html document head section you tell that the document is using UTF-8 charset by adding a line like this:
Code:
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
Of course you can use other charsets if you want to; I've found UTF-8 most suitable for my own needs. After that you can get picky about your html file's content, how you should do things and how you shouldn't..
