Add Week-01 and Week-02 content

This commit is contained in:
2026-02-10 11:31:02 +05:30
parent 8ba6ddffc4
commit 0957777134
18 changed files with 820 additions and 0 deletions

32
Week-02/Day_01/style.css Normal file
View File

@@ -0,0 +1,32 @@
body {
font-family: Arial;
background: #f2f2f2;
}
.wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
width: 500px;
margin: 50px auto;
}
.form {
display: flex;
flex-direction: column;
gap: 10px;
background: white;
padding: 15px;
}
.display {
display: flex;
flex-direction: column;
gap: 10px;
background: white;
padding: 15px;
}
input, button {
padding: 8px;
}