Answers for "html color string"

0

possible colors used for html

#FF0000 means FF worth of Red, and no Green or Blue. The result is RED.

#0000FF means no Red or Green, and FF worth of Blue. The result is BLUE.

#FFFF00 means FF worth of Red and Green, and Blue. The result is YELLOW.

#000000 means no Red, Green, or Blue. The result is BLACK.

#FFFFFF means full FF amounts of Red, Green, and Blue. The result is WHITE.

#FFEFD5 has high values for all colors, giving a light result: PAPAYAWHIP.
   (no, I don't know who thought up the color names.)

#556B2F has lower values for all colors, giving a darker result: DARKOLIVEGREEN.

 
Posted by: Guest on May-21-2020
-1

html color codes

<!DOCTYPE html>
<!-- Code inside there--><html>
    <head>
        <meta charset="utf-8">
        <title>Lists Page</title>
        <style>
            body {
                background-color: black;
                text-shadow: 0px 0px 10px blue;
                font-family: Trebuchet MS;
                font-size: 20px;
            }
            h1 {
                color: white;
            }
            p {
                color:rgb(255, 230, 8);
                text-shadow: 0px 1px 30px blue;

            }
            h2 {
                color:white;
                font-size: 30px;
            }
            ul {
                list-style-type: circle;
                color:rgb(255, 0, 98);
                text-shadow: 0px 0px 5px blue;
            }
            ol {
                color:rgb(250, 105, 259);
                line-height: 30px;
            }
            h4 {
                color: rgb(0, 255, 55);
            }
    </style>
      </html>
Posted by: Guest on September-23-2020

Browse Popular Code Answers by Language