From 0bc26ec8338bc299f8d07e8909e44f0cd0ec42c4 Mon Sep 17 00:00:00 2001 From: Andrey Ivanov Date: Mon, 29 May 2023 17:03:25 +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..717f84c 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..0baa62d --- /dev/null +++ b/script.js @@ -0,0 +1,3 @@ +function sayHi() { + alert('Hello, Git!'); +} \ No newline at end of file