Week 2 Day 1: HTML forms and input validation

This commit is contained in:
2025-12-23 16:03:56 +05:30
parent df6447c8eb
commit d38fa637b6
4 changed files with 120 additions and 0 deletions

19
Week-2/Day-1/style.css Normal file
View File

@@ -0,0 +1,19 @@
body {
font-family: Arial, sans-serif;
padding: 20px;
}
form {
width: 300px;
}
label {
display: block;
margin-top: 10px;
}
input, textarea, button {
width: 100%;
margin-top: 5px;
padding: 6px;
}