Created
August 8, 2020 11:46
-
-
Save TyrfingMjolnir/2ca05d875b58ab4632203343432dbc3f to your computer and use it in GitHub Desktop.
HTML + JS include
This file contains hidden or 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
<html> | |
<head> | |
<meta name="generator" content="Handwritten HTML see www.w3.org for further assistance."> | |
<title>Trykk meg</title> | |
</head> | |
<body> | |
<h1 onclick="trykkmeg()"> | |
<div>Hei</div> | |
</body> | |
<script src="test.js"></script> | |
</html> |
This file contains hidden or 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
function trykkmeg() { | |
document.body.style.backgroundColor = "maroon"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment