Sample html with js script tag
<!DOCTYPE html> | |
<html lang="en"></html> | |
<head> | |
<meta charset="UTF-8"> | |
<title> Test </title> | |
<style> | |
body { | |
background-color: lightcoral; | |
} | |
</style> | |
</head> | |
<body> | |
<script type="text/javascript"> | |
console.log("mensagem no console!"); | |
</script> | |
<div id = "data"> | |
<h4>Mensagem na tela</h4> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment