From 6aff1e773d219cd3679f288c6776f69c962625dc Mon Sep 17 00:00:00 2001 From: Kara Rondinelli Date: Thu, 1 Feb 2024 16:11:34 -0500 Subject: [PATCH] finished assignment --- week-02/index.html | 19 +++++++++++++++++++ week-02/js/app.js | 3 +++ 2 files changed, 22 insertions(+) create mode 100644 week-02/index.html create mode 100644 week-02/js/app.js diff --git a/week-02/index.html b/week-02/index.html new file mode 100644 index 0000000..3a892e5 --- /dev/null +++ b/week-02/index.html @@ -0,0 +1,19 @@ + + + + + + + What's your name? + + + + + + +

Hello world!

+ + + + + diff --git a/week-02/js/app.js b/week-02/js/app.js new file mode 100644 index 0000000..9523170 --- /dev/null +++ b/week-02/js/app.js @@ -0,0 +1,3 @@ +let name = window.prompt("What's your name?"); + +console.log("Hello, welcome to my website, " + name.toUpperCase() + "!") \ No newline at end of file