diff --git a/Training/CSS-Practice/practice-1.html b/Training/CSS-Practice/practice-1.html index 9f6fed7..773ab38 100644 --- a/Training/CSS-Practice/practice-1.html +++ b/Training/CSS-Practice/practice-1.html @@ -12,20 +12,20 @@ font-family: Arial, sans-serif; background-color: #f0f0f0; /* TASK 1: PLACE THE ITEMS IN THE CENTRE OF THE WEBPAGE */ - /* margin: ; - padding: ; - display: ; - justify-content: ; - align-items: ; - height: ; */ + /* margin: 0; */ + /* padding: 20; */ + display: flex; + justify-content: center; + align-items: center; + height: 100vh; } .container { background-color: #fff; padding: 20px; /* TASK 2: CREATE YOUR OWN CURVED BORDER */ - /* border: ; - border-radius: ; */ + border: solid; + border-radius: 5mm; box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); } diff --git a/Training/Counter/counter.html b/Training/Counter/counter.html index 186c8d9..a892114 100644 --- a/Training/Counter/counter.html +++ b/Training/Counter/counter.html @@ -26,14 +26,22 @@
Click count: 0
+