Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!doctype html> <title>Example</title> <style> .rounded-border { width: 200px; padding: 30px; border: 1px solid crimson; border-radius: 35px 10px / 20px 10px; } </style> <div class="rounded-border"> This box has rounded borders. </div>