Initial commit: basic web project structure

This commit is contained in:
Eiman AlEmadi
2026-07-28 15:06:31 +03:00
commit a88a88a90f
3 changed files with 32 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #f0f0f0;
}
h1 {
color: #333;
}