Hi please help me with this
Answers
Answer:
<!DOCTYPE html>
<html>
<title>Positive attitude</title>
<title>Positive attitude</title>
<body style= "background-color:green;">
<p style="color:red;font-family:lucida calligraphy">What you get</p>
<p style="color:red;font-family: lucida calligraphy">What you give</p>
</body>
</html>
Answer:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Positive attitude</title>
<style>
title{
background-color: green;
}
body{
font-family: "Lucida Handwriting";
text-decoration:underline;
text-align: center;
}
</style>
</head>
<body>
<p>You Get What</p>
<p>You Give</p>
</body>
</html>
Explanation:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Positive attitude</title>
<style>
title{
background-color: green;
}
body{
font-family: "Lucida Handwriting";
text-decoration:underline;
text-align: center;
}
</style>
</head>
<body>
<p>You Get What</p>
<p>You Give</p>
</body>
</html>