From 19613e39cfa63fc63362b65fb44b42ac8c96bf7c Mon Sep 17 00:00:00 2001 From: Max Polyakov Date: Sun, 11 Jul 2021 18:51:51 +0300 Subject: [PATCH] Added sayHi --- my.html | 4 ++-- script.js | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 script.js diff --git a/my.html b/my.html index 0296029..54db6a3 100644 --- a/my.html +++ b/my.html @@ -1,7 +1,7 @@ Welcome to Git! - +

Let's have some fun!

-

New changes!

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