Task 2
Task 2
html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
body {
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background: #e0f7fa;
h1 {
margin-bottom: 10px;
p{
margin-bottom: 20px;
text-align: center;
max-width: 400px;
form {
background: #fff;
padding: 20px;
border-radius: 10px;
width: 300px;
width: 100%;
margin-bottom: 15px;
padding: 10px;
border-radius: 5px;
button {
background: #00796b;
color: #fff;
border: none;
cursor: pointer;
button:hover {
background: #004d40;
</style>
</head>
<body>
<p>Fill out the form below to register your interest in volunteering with
Save The Bay.</p>
<form>
<button type="submit">Submit</button>
</form>
</body>
</html>
/* style.css */
body {
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background: #e0f7fa;
h1 {
margin-bottom: 10px;
p{
margin-bottom: 20px;
text-align: center;
max-width: 400px;
form {
background: #fff;
padding: 20px;
border-radius: 10px;
width: 300px;
margin-bottom: 15px;
padding: 10px;
border-radius: 5px;
button {
background: #00796b;
color: #fff;
border: none;
cursor: pointer;
button:hover {
background: #004d40;