From 6b24516cf10d5c706fec147e261efe2c06105c70 Mon Sep 17 00:00:00 2001 From: alexxgusse Date: Fri, 22 Sep 2023 20:59:11 +0500 Subject: [PATCH] Added sayHi --- my.html | 1 + script.js | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 script.js diff --git a/my.html b/my.html index 0296029..08af48b 100644 --- a/my.html +++ b/my.html @@ -1,5 +1,6 @@ Welcome to Git! +

Let's have some fun!

diff --git a/script.js b/script.js new file mode 100644 index 0000000..0bcfc4d --- /dev/null +++ b/script.js @@ -0,0 +1,3 @@ +function sayHi() { + alert("Hello, GIT!") +} \ No newline at end of file