Code
Execute
<
!DOCTYPE
html
>
<
html
>
<
head
>
<
title
>
Wikitechy HTML script Tag
<
/title
>
<
/head
>
<
body
>
<
p
id
="tag"
>
<
/p
>
<
script
>
document.getElementById(
"tag"
).innerHTML =
"Hello Wikitechy!"
;
<
/script
>
<
/body
>
<
/html
>
<!DOCTYPE html> <html> <head> <title>Wikitechy HTML script Tag</title> </head> <body> <p id="tag"></p> <script> document.getElementById("tag").innerHTML = "Hello Wikitechy!"; </script> </body> </html>
Result