AخA
 
1
<!-- HTML -->

7
 
1
<!-- CSS (starts with style tag)-->
2
<style>
3
  body{
4
    background-color: black;
5
  }
6
</style>
7
                    

5
 
1
<!-- JAVA (starts with script tag)-->
2
<script>
3
    alert("Hello World!")
4
</script>
5