Toggle navigation
☰
HTML
CSS
Scripting
Database
<!DOCTYPE html> <html> <head> <style> .centered-text { text-align: center; border: 1px solid #ccc; padding: 20px; } </style> </head> <body> <div class="centered-text"> <p>This text is centered within its container.</p> </div> </body> </html>