+ 1
How to combine html css and javascript in one coding?
I dont kniw how to combine.
2 Respostas
+ 6
<!Doctype html>
<html>
<head>
<style>
</style>
<script>
</script>
</head>
and so on..
+ 5
To add Css code:
<style> your code in css </style>
To add JS code:
<script> your code in JS </script>
Note: Both of them put between the head tag, it is better..