Exercise 10.1

This commit is contained in:
Karan 2021-11-24 22:55:26 +05:30 committed by GitHub
parent d3f1fbc199
commit 575d53c368
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

13
Chapter 10/Exercise 10.1 Normal file
View File

@ -0,0 +1,13 @@
<!doctype html>
<html>
<head>
<title>Canvas HTML5</title>
</head>
<body>
<div id="one">Hello World</div>
<script>
const myEle = document.getElementById("one");
console.log(myEle);
</script>
</body>
</html>