0

enter image description here

I need to style my web page title like this image, Please could you help with this.

m4n0
  • 29,823
  • 27
  • 76
  • 89

1 Answers1

1

I think this is it

Adjust it to your needs

#parallelogram {
  padding: 8px;
  display: inline-block;
  background: darkred;
  transform: skewX(-30deg);
  }
#text {
  transform: initial;
  color: white;
  transform: skewX(30deg);
}
<div id="parallelogram">
  <div id="text">
    Coding practice
  </div>
</div>