Last active
January 5, 2021 10:27
-
-
Save thatisuday/5295fd201da1771a6a0ee5a6bb1a47f5 to your computer and use it in GitHub Desktop.
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 lang='en'> | |
<head> | |
<meta charset='UTF-8'> | |
<meta name='viewport' content='width=device-width, initial-scale=1.0'> | |
</head> | |
<body style="background-color: #eee;"> | |
<div id='app'></div> | |
</body> | |
</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
const appElem = document.getElementById( 'app' ); | |
appElem.innerHTML = '<h1>Hello World!</h1>'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment