Exercise 10.5

This commit is contained in:
Karan 2021-11-24 22:58:04 +05:30 committed by GitHub
parent 7ff087aa46
commit 160ec29c74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

16
Chapter 10/Exercise 10.5 Normal file
View File

@ -0,0 +1,16 @@
<!doctype html>
<html>
<head>
<title>Canvas HTML5</title>
</head>
<body>
<body>
<h1 class="ele">Hello World</h1>
<div class="ele">Hello World 1</div>
<div class="ele">Hello World 3</div>
<p class="ele">Hello World 4</p>
<script>
const myEle = document.querySelector(".ele");
console.log(myEle);
</script>
</html>