From d1c1accf2a8ae46862d2988526d828b237c34ccf Mon Sep 17 00:00:00 2001 From: Alexey Kultin Date: Wed, 14 Dec 2022 11:47:58 +0300 Subject: [PATCH] Added sayHi Added sayHi function. --- my.html | 2 +- script.js | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 script.js diff --git a/my.html b/my.html index 0296029..c1cb4d0 100644 --- a/my.html +++ b/my.html @@ -1,6 +1,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..d7bb3ed --- /dev/null +++ b/script.js @@ -0,0 +1,4 @@ +function sayHi() { + alert('Hello, Git!'); +}; +sayHi(); \ No newline at end of file