swmcdonnell
0
Q:

html color codes

<!-- Check these best user friendly html color codes -->
#1ca69d     #e31ce0      #c13e72      #99b34d    #3affb9
#6c7093     #b35ba0      #1b1452
14
<!-- htmlcolorcodes.com is a great place to find color codes! -->
<!-- With HTML, you can use rgb('0,0,0') colors to get the result,
or you can use the color code, such as #FFFFFF. Multiple text editors
allow you to use only the first three letters/numbers of the color,
such as VS Code. Using that system, it would be #FFF instead. -->

<!-- You can also use color codes with CSS, it is much easier.
Search up "css color codes" to see my answer for that! :D -->
1
/* Answer to: "html color codes" */

/*
  Here's a great place where you can 140 HEX colours and their names:
  https://www.w3schools.com/colors/colors_names.asp

  "Eww! That list is so unfiltered!"
  Don't worry, you can find the same list but sorted by HEX value:
  https://www.w3schools.com/colors/colors_hex.asp
*/
1
Use htmlcolorcodes.com for this
4
#1ca69d     #e31ce0      #c13e72      #99b34d    #3affb9
#6c7093     #b35ba0      #1b1452
0
<!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>
0

New to Communities?

Join the community