Skip to content

Instantly share code, notes, and snippets.

@FlaviaBastos
Last active August 29, 2020 20:33
Show Gist options
  • Save FlaviaBastos/0e93ff5e7c306eee07698c38919f266f to your computer and use it in GitHub Desktop.
Save FlaviaBastos/0e93ff5e7c306eee07698c38919f266f to your computer and use it in GitHub Desktop.
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