Exercise 10.1

This commit is contained in:
Karan
2021-11-24 22:55:26 +05:30
committed by GitHub
parent d3f1fbc199
commit 575d53c368
+13
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>