Toggle navigation
☰
HTML
CSS
Scripting
Database
<!DOCTYPE html> <html> <head> <style> .shape { background-color: lightgreen; padding: 30px; width: 250px; text-align: center; border: 3px solid #333; /* top-left | top-right | bottom-right | bottom-left */ border-radius: 50px 0 50px 0; } </style> </head> <body> <div class="shape">Leaf Shape!</div> </body> </html>