Compare commits

2 Commits

Author SHA1 Message Date
6e37e47bf8 fix: change div size (#5)
Reviewed-on: #5
Co-authored-by: Yacoub <yacoub@qb4.tech>
Co-committed-by: Yacoub <yacoub@qb4.tech>
2025-09-21 12:40:36 +02:00
Yacoub Altayeh (42Amman)
87d3dbf9d3 feat: Add center div html file 2025-09-21 06:30:46 +03:00

18
center_div.html Normal file
View File

@@ -0,0 +1,18 @@
<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>