1. Design and develop an HTML script that will display the given web page content. Apply the appropriate element, heading must be center, background color (light cyan), and font-color (the word VALENTINES must be in a bold face, the word chocolate must be in a color brown, roses should be red color, true love must be italic, and LOVE word must be in red color Below illustration is the sample output. Make sure in a <title> tag you must write your SURNAME.
<!DOCTYPE html>
<html>
<head>
<title>
ERICSSON
</title>
</head>
<body style="background-color:lightcyan;">
<p style="text-align:center"><b>VALENTINES</b></p>
<p style="color:brown">chocolate</p>
<p style="color:red">roses</p>
<p><i>true</i></p>
<p style="color:red"><p><i>LOVE</i></p>
</body>
</html>
Comments
Leave a comment