skip to Main Content

In some languages we use accents and other special characters like ç… For instance to write à we use á When I write words with accents in the title and description meta tags, alt in the img and title in links what should I use?:

  • no accents: a
  • normal accents: à
  • the special character: á

I should think about what is correct with html and what is more useful for search engines and seo.

2

Answers


  1. In the <head> section of you HTML page, you can add:

    <meta charset="UTF-8">
    

    to specify a characters set. If your special characters are encoded with UTF-8 (in this case), you are safe.

    Login or Signup to reply.
  2. They are all correct HTML.

    Only two are correct whatever human language (e.g. French) you are writing in.

    Search engines shouldn’t care about the difference between a literal and a character reference.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search