multicolored text in html

Solutions on MaxInterview for multicolored text in html by the best coders in the world

showing results for - "multicolored text in html"
Paola
22 Aug 2016
1<!DOCTYPE html>
2<html>
3  <head>
4    <title>Title of the document</title>
5  </head>
6  <body>
7    <span style="color:#FF0000">H</span>
8    <span style="color:#66CC66">e</span>
9    <span style="color:#FF9966">l</span>
10    <span style="color:#FFCCCC">l</span>
11    <span style="color:#FF0066">o</span>
12  </body>
13</html>