Files
JavaScript-from-Beginner-to…/Chapter 09/Code Samples/ch9-accessing.html
T
brightboost 67a8d8a7a0 reorganizing
2021-12-02 21:21:10 +01:00

12 lines
291 B
HTML
Executable File

<html>
<body>
<h1 style="color:pink;">Just an example</h1>
<div id="one" class="example">Hi!</div>
<div id="two" class="example">Hi!</div>
<div id="three" class="something">Hi!</div>
</body>
<script>
console.log(document.getElementById("two"));
</script>
</html>