Translate

Saturday, 18 November 2017

text and background color css

<!DOCTYPE html>

<html>


<head>

  <title>Background and text color</title>

  <style>

  .clr_cls {

    background-color: red;

    color: yellow;

  }

  </style>

</head>


<body>

  <div class="clr_cls">

    Mafasict

  </div>


</body>


</html>

No comments:

Post a Comment

Featured post

check box

<!DOCTYPE html> <html> <head>   <title>Check Box</title> </head> <body>   <input ty...