Toggle navigation
☰
HTML
CSS
Scripting
Database
<!DOCTYPE html> <html> <head> <style> .rounded-box { border: 5px solid darkblue; padding: 20px; border-radius: 1.5em; } </style> </head> <body> <div class="rounded-box">This box has rounded corners.</div> </body> </html>