initial commit of HTML5 files

This commit is contained in:
Dave Lane 2023-07-25 21:54:31 +12:00
parent f56d0df445
commit 952ca111bb
4 changed files with 89 additions and 2 deletions

5
js/script.js Normal file
View file

@ -0,0 +1,5 @@
const name = document.querySelector(".name");
function changeColor() {
name.style.color = "blue";
}