HTML (Hypertext Mockup Language)
A structural language that builds the structure of a website. Heading, paragraphs, images, text all are the part of HTML that creates the basic structure of a website and is later enhanced by CSS and Java Script
Ex:
<head> or <body>
CSS (Cascading Style Sheets)
A styling language that gives styling, formatting, and presentation of a website. With the help of font color, background color and border styling CSS furnishes the look of the site
Ex:
<style>
CSS goes here
</style>
Java Script
A programming language that gives logic or behavior to the website, for example, a popup window alert.
Ex:
<script type=”text/javascript”>
JavaScript code goes here
</script>