how to change color of button text in html code example
Example 1: how to give color to text in html
HTML color to text
<body>
<p style="color:#FF0000";>Red paragraph text</p>
</body>
Example 2: change button color html
.button {
background-color: #4CAF50;
}
Example 3: css button style rectangle
<div class="placeholder-box">
<button type="button"> Button Text Here </button>
<p>Nunc condimentum mauris elit</p>
<ul>
<li>Duis quis eros felis</li>
<li>Nulla facilisi</li>
</ul>
</div>