Computer Science, asked by rakhshandakhan57, 3 months ago

write a code in HTML with background colour blue, front size of the text should be 20 , first line should be in purple colour second in navy colour and third should be in green colour

please someone answer
I'll mark u as brainiest​

Answers

Answered by jai696
4

\large\mathsf\color{pink}{Solution\: using\: HTML\: 5}

<!DOCTYPE html><html> <head> <style type="text/css" media="all"> body { font-size: 20px; background-color: blue; } .p1 { color: purple; } .p2 { color: navy; } .p3 { color: green; } </style> </head> <body> <p class="p1">Hello, world!</p> <p class="p2">Hello, world!</p> <p class="p3">Hello, world!</p> </body></html>

\large\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Similar questions