Alice
Alice

Reputation: 29

Text not appearing normally

Here is the text that I want it to show: résumé

And here is what is shown:

enter image description here

Here is the HTML code:

<div class="overlay-content">
  <a href="main">Home</a>
  <a href="/Downloads/Navjeeven Mann Resume.docx"> Résumé </a>
  <a href="finalgrade">Final Grade Calculator</a>
  <a href="second">Contact</a>
  <a id="social" href="https://github.com/Jeeven56">
    <img src="github.png">
  </a>
</div>

Upvotes: 2

Views: 66

Answers (2)

lecaro
lecaro

Reputation: 525

You probably solve the problem at this way ... but it's not your code... you need to use UTF-8 encoding for your characters

<div class="overlay-content">
  <a href="main">Home</a>
  <a href="/Downloads/Navjeeven Mann Resume.docx"> R&eacute;sum&eacute; </a>
  <a href="finalgrade">Final Grade Calculator</a>
  <a href="second">Contact</a>
  <a id="social" href="https://github.com/Jeeven56">
    <img src="github.png">
  </a>
</div>

Upvotes: 2

Tedds
Tedds

Reputation: 312

Inside the <head> tag you must get sure to apply the value UTF-8 to the charset attribute, like that:

<head>
  <meta charset="utf-8">
  ...
</head>

Upvotes: 2

Related Questions