Isaac
4
Q:

script tag in html

/*
There is no actual way to put javascript inside an HTML attribute
But there are some event attribute that can trigger JavaScript 
functions.
Otherwise you have to use <script> tag or external JavaScript
*/
2
<script>
	// Put JavaScript inside here
</script>
0
<script>
  //Insert JS scripts here
  var html
  html = "You can use the <script> tag to incorporate JS code into your HTML code"
  console.log(html)
</script>
0
<script>
  // Write JS here
</script>

<script src="link/to/js/file.js"></script>
0

New to Communities?

Join the community