Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML Introduction to HTML and CSS (2016) Adding a New Web Page Set up an HTML Document

Letters in other languages

My name is Adrián Castañeda, i'm trying to write my name in the body of the resume html but my name has two letters that are not in the English Keyboard so i have to change it to Spanish Keyboard. My question is how can i write ñ and á without them changing into something else.

vincent batteast
vincent batteast
51,094 Points

ñ ñ Lowercase n-tilde

á á Lowercase a-acute

you have to write it in code. &aacte; amd ñ should work for you.

1 Answer

Steven Parker
Steven Parker
229,732 Points

Vincent had the right idea, but the codes need Markdown formatting to appear in the post.
Anyway, the codes you want are:

á   :point_right:   á
ñ   :point_right:   ñ

So the total string would be: "Adrián Castañeda", which would show as "Adrián Castañeda".

But I expect you could use the Spanish keyboard keys directly, since they seem to show up OK in your question!

They appear ok in the html sheet but change up in the web page, Thank you for the info very useful