HTML&CSS - rgb

by Code_Garage

HTML

<div class="container" id="example"></div>

CSS

body {
  min-height: 600px;
}
.container {
  font-family: arial;
  font-weight: bold;
  width: 200px;
  height: 200px;
  margin: 5px;
  padding: 5px;
  color: white;
  box-sizing: border-box;
}

#example {
	background-color: rgb(255,105,180);
}