Computer Science, asked by rifna6014, 1 year ago

HTML code to create a paragraph whose text in colour is blue

Answers

Answered by soomeetkumarss
6
Use the color attributes inside the font tag
Answered by aqibkincsem
17

HTML stands for Hyper Text Markup Language.

The HTML code to create a paragraph whose text in colour is blue is following - <body>.   <p style="color: #3346FF";>Blue paragraph text</p>. </body>. #3346FF is the hex code for blue colour.

It can also be written as <body>.  <p style="color: Blue";>Blue paragraph text</p>. </body>

Similar questions