My first day
HTML:
```html
```
CSS (styles.css):
```css
.container {
width: 300px;
margin: 0 auto;
padding: 20px;
background-color: #f2f2f2;
border-radius: 5px;
}
h2 {
text-align: center;
}
form {
display: flex;
flex-direction: column;
}
input[type="text"],
input[type="password"] {
margin-bottom: 10px;
padding: 10px;
border-radius: 3px;
border: 1px solid #ccc;
}
button {
padding: 10px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 3px;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}
```
Comments
Post a Comment