Can someone help me achieve this design?
https://i.sstatic.net/435TA.png
I'm not very familiar with HTML, but I want to create a rectangle in a div
and only display half of it. However, my attempts have been unsuccessful so far. Here is the current layout of the website and how I would like it to appear:
https://i.sstatic.net/2W1QJ.png
Below is the code snippet being used:
header {
font-family: Arial;
}
// CSS code continues...
#rectangle {
width: 1000px;
height: 900px;
background: rgb(187, 199, 124);
border-radius: 500px; // This creates rounded edges for the rectangle
}
<html>
// HTML markup continues...