From 8da44026aa9b4a248dc6f16bf3d0eb053baa42b7 Mon Sep 17 00:00:00 2001 From: abdurazak Date: Sat, 9 Nov 2024 02:34:44 -0500 Subject: [PATCH 1/2] increase the size of the circle --- circle.html | 2 +- style.css | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/circle.html b/circle.html index 213a8df4e..f279c4bfb 100644 --- a/circle.html +++ b/circle.html @@ -10,4 +10,4 @@

How to create a circle using a div

- + \ No newline at end of file diff --git a/style.css b/style.css index b1a4e3b87..824365de6 100644 --- a/style.css +++ b/style.css @@ -1,8 +1,8 @@ .blue { - background-color:blue + background-color: blue; } -.circle{ - border-radius:50%; - width:300px; - height:300px; +.circle { + border-radius: 50%; + width: 500px; + height: 500px; } From 603f0c1174cd92d22cf3095e50720e2e2d11d560 Mon Sep 17 00:00:00 2001 From: abdurazak Date: Sat, 9 Nov 2024 02:50:30 -0500 Subject: [PATCH 2/2] add red color feature --- style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/style.css b/style.css index 824365de6..50b8a3142 100644 --- a/style.css +++ b/style.css @@ -1,6 +1,9 @@ .blue { background-color: blue; } +.red { + background-color: red; +} .circle { border-radius: 50%; width: 500px;