Reputation: 29
Here is the text that I want it to show: résumé
And here is what is shown:
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
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é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
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