CSS Color Palette
up here is a sample of what the code does below
<!DOCTYPE html>
<html>
<style>
div {height:50px;width:100%;}
</style>
<body>
<h1>Color Palette</h1>
<center>
<div style="background-color:rgb(71,255,229)">
<h2> Cyan </h2>
</div>
<div style="background-color:rgb(255,0,196)">
<h2> Magenta </h2>
</div>
<div style="background-color:rgb(160,228,255)">
<h2> Light Cyan </h2>
</div>
<div style="background-color:rgb(252,171,255)">
<h2> light magenta </h2>
</div>
<div style="background-color:rgb(255,250,99)">
<h2> Yellow </h2>
</div>
</center>
</body>
</html>
Comments
Post a Comment