From e4cb039edc411a4e4fcbf1b5e7e5390438c2f8c3 Mon Sep 17 00:00:00 2001 From: leekoby Date: Thu, 5 Jan 2023 15:11:15 +0900 Subject: [PATCH] Magical Forest Circle Exercise --- 55_Magical Forest Circle Exercise/app.js | 6 ++++++ 55_Magical Forest Circle Exercise/index.html | 18 ++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 55_Magical Forest Circle Exercise/app.js create mode 100644 55_Magical Forest Circle Exercise/index.html diff --git a/55_Magical Forest Circle Exercise/app.js b/55_Magical Forest Circle Exercise/app.js new file mode 100644 index 0000000..6762c48 --- /dev/null +++ b/55_Magical Forest Circle Exercise/app.js @@ -0,0 +1,6 @@ +const container = document.querySelector('#container'); +const img = document.querySelector('img'); + +container.style.textAlign = 'center'; +img.style.width = '150px'; +img.style.borderRadius = '50%'; \ No newline at end of file diff --git a/55_Magical Forest Circle Exercise/index.html b/55_Magical Forest Circle Exercise/index.html new file mode 100644 index 0000000..8a640d9 --- /dev/null +++ b/55_Magical Forest Circle Exercise/index.html @@ -0,0 +1,18 @@ + + + + Forest + + + + + + + +
+

I ♥ Trees

+ +
+ + + \ No newline at end of file