Last active
August 29, 2020 20:33
-
-
Save FlaviaBastos/0e93ff5e7c306eee07698c38919f266f to your computer and use it in GitHub Desktop.
Sample html with js script tag
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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