Answers for "html color"

21

white rgb color

rgb(255,255,255)	/*white*/  Hex 	#FFFFFF
Posted by: Guest on July-07-2020
11

html color

<p style="color: #ffffff;">Lorem ipsum...</p>				<!-- text -->
<p style="background-color: red;">Lorem ipsum...</p>		<!-- background -->
<h1 style="border: 2px solid #00ff00;">Lorem ipsum...</h1>	<!-- border -->

<!-- 3 ways to define colors -->
<h1 style="background-color: rgb(255, 99, 71);">Lorem ipsum...</h1>
<h1 style="background-color: #ff6347;">Lorem ipsum...</h1>
<h1 style="background-color: hsl(9, 100%, 64%);">Lorem ipsum...</h1>
Posted by: Guest on September-05-2021
25

color in html

<!-- Color in HTML by inline-css -->
<p style="color: red; background-color: blue;">
  This text is red and the background is blue
</p>
Posted by: Guest on October-29-2020
0

html color codes

Search This in Search Bar :- "HTML Color Picker" You Will Find Best Tool!
Posted by: Guest on December-23-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