create a HTML document that displays for motivational quotes for students. all the quote must be in separate lines with different font style and colour. Also give yellow colour to tha page
Answers
Answered by
3
Answer:-
<!DOCTYPE html>
<html>
<head>
<title> Quotes for Students </title>
</head>
<Body bgcolor="yellow">
<font size="25" face="Courier" color="red">
<p> "Work hard Dream big Never give up" </p>
</font>
<font size="25" face="Verdana" color="green">
<p> "The Struggle you're in Today is developing the Strength you need for Tomorrow"</p>
</font>
<font size="25" face="Georgia" color="aqua">
<p> "There is no Substitute for Hard Work" </p>
</font>
<font size="25" face="Palatino" color="Brown">
<p> "Student life is the seed of your life Plant it wisely" </p>
</font>
</body>
</html>
This the Coḍing of the given question ↑.
Similar questions