+ 2
Creating same file destination
How can you put html, css and JavaScript in the same file for easy linking?
2 Réponses
+ 9
Inside <head> tag put your css code between <style></style>.
After </body> tag put your javascript code between tags <script></script>
+ 5
<html>
<style>
body {}...
</style>
<script>
document.write("...");
</script>
</html>