colors in CSS

 <!DOCTYPE html>

<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>colors in css</title>
<style>
#firstpara{
    color: red;
}

</style>

</head>
<body>
    <h2>This is my first box</h2>
    <p id="firstpara">this is my paragraph</p>
</body>
</html>

Comments