Files
team-project-alpha/center_div.html
2025-09-21 13:39:51 +03:00

19 lines
324 B
HTML

<html>
<head>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
</style>
</head>
<body>
<div style="width: 300px; height: 300px; text-align: center; background-color: #d3d3d3">
Center Div 1
</div>
</body>
</html>