1<!-- Check these best user friendly html color codes -->
2#1ca69d #e31ce0 #c13e72 #99b34d #3affb9
3#6c7093 #b35ba0 #1b1452
1<!-- htmlcolorcodes.com is a great place to find color codes! -->
2<!-- With HTML, you can use rgb('0,0,0') colors to get the result,
3or you can use the color code, such as #FFFFFF. Multiple text editors
4allow you to use only the first three letters/numbers of the color,
5such as VS Code. Using that system, it would be #FFF instead. -->
6
7<!-- You can also use color codes with CSS, it is much easier.
8Search up "css color codes" to see my answer for that! :D -->
1<!DOCTYPE html>
2<!-- Code inside there--><html>
3 <head>
4 <meta charset="utf-8">
5 <title>Lists Page</title>
6 <style>
7 body {
8 background-color: black;
9 text-shadow: 0px 0px 10px blue;
10 font-family: Trebuchet MS;
11 font-size: 20px;
12 }
13 h1 {
14 color: white;
15 }
16 p {
17 color:rgb(255, 230, 8);
18 text-shadow: 0px 1px 30px blue;
19
20 }
21 h2 {
22 color:white;
23 font-size: 30px;
24 }
25 ul {
26 list-style-type: circle;
27 color:rgb(255, 0, 98);
28 text-shadow: 0px 0px 5px blue;
29 }
30 ol {
31 color:rgb(250, 105, 259);
32 line-height: 30px;
33 }
34 h4 {
35 color: rgb(0, 255, 55);
36 }
37 </style>
38 </html>