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

Digital Literacy Computer Basics Computer Languages What Some Common Languages Do and How They Work Together

what is a front end language

i don't know the difference

2 Answers

A front end language is a language that controls what you see on the page, such as all the buttons, paragraphs, headers, etc. A back end language is something that controls things that you don't visually see on the page, such as routing. Hope this helped!

Rick Gleitz
Rick Gleitz
47,197 Points

Hi Steve,

A basic answer:

Pretty much everything that is seen in the browser and that a visitor can interact with is the front end.

The back end has to do with stored/manipulated data, like number-crunching on whatever you might request before it spits out an answer to any query you might make.

The top three languages for front end are HTML, CSS, and JavaScript. HTML for the web page's structure, CSS for its styling, and JavaScript for user functionality/interaction.

Hope this helps!