Spanish characters in the header of the HTML page

My HTML for the page title is as follows

<title>Telefonía</title>

When I test it on the browser, the SPanish symbol does not display exactly the same as above.

The page title below is displayed here.

enter image description here

I tried using & iacute; And ** & # 237; ** but it does not work in PAGE TITLE

Here is my url site http://tinyurl.com/agdsqff I checked all the special codes, but it does not work

+5
source share
7 answers

Try to write

&iacute;

instead of this. These are HTML escape characters. Here you can find the whole list http://www.theukwebdesigncompany.com/articles/entity-escape-characters.php

+1

.

<!DOCTYPE html>
<head>
    <meta charset="utf-8">
    <title>Telefonía</title>
</head>
+7

<head>:

<meta charset="UTF-8">

.js put:

document.title="telefonía";
+1
0

:

  • . , HTML . UTF-8, "í" , .
  • <meta>. :

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">

Un saludo!

0

<title>Telefonía</title> , , UTF-8 ( , HTTP, , - meta ).

, , , , <title>Telefon&iacute;a</title> <title>Telefoniacute;a</title>. , <title>Telefon&iacute;a</title>. :

0
<p>Telefon&#237a</p> 

- . & iacute http://jsfiddle.net/PDCvw/ EDIT
, . http://shodor.org/~amalani/acute.html

<title>Telefon&amp;iacute;a</title>

   & iacutea

Telefon & iacute;

-1

All Articles