From ad7abd48502350f25525b957e5c8560b8d7426f3 Mon Sep 17 00:00:00 2001 From: Andrey Demchenko Date: Wed, 21 Jun 2023 23:31:03 +0300 Subject: [PATCH] Added sayHi --- my.html | 2 +- script.js | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 script.js diff --git a/my.html b/my.html index 0296029..56b073d 100644 --- a/my.html +++ b/my.html @@ -2,6 +2,6 @@ Welcome to Git!

Let's have some fun!

- +

New changes!

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