CSS Align
<!DOCTYPE html> <html> <head> <style> .hero { display: flex; justify-content: center; align-items: center; height: 300px; } </style> </head> <body> <div class="hero"> <p>Centered content</p> </div> </body> </html>
<!DOCTYPE html> <html> <head> <style> .hero { display: flex; justify-content: center; align-items: center; height: 300px; } </style> </head> <body> <div class="hero"> <p>Centered content</p> </div> </body> </html>