Text Align Center
CSS
Easy
3 views
Problem Description
Center a heading and paragraph for a meetcode banner.
Output Format
Print the HTML+CSS code in one block.
Constraints
Use text-align: center.
Official Solution
<!doctype html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<title>meetcode</title>
<style>
.banner { text-align: center; padding: 24px 16px; background: #eafaf1; border-radius: 14px; }
</style>
</head>
<body>
<div class='banner'>
<h1>meetcode</h1>
<p>Practice makes you confident.</p>
</div>
</body>
</html>
Solutions (0)
No solutions submitted yet. Be the first!
No comments yet. Start the discussion!