I'd like to create this kind of design in CSS (or bootstrap functionnality maybe) so if you know a tutorial or something I need it.
Style I'd like to create:
Thanks
I'd like to create this kind of design in CSS (or bootstrap functionnality maybe) so if you know a tutorial or something I need it.
Style I'd like to create:
Thanks
 
    
    You can get this label tag easely, using some css tricks (after + positioning):
HTML:
<span class="label-tag">Type</span>
CSS:
.label-tag {
   display:inline-block;
   position: relative;
   height: 20px;
   line-height: 20px;
   padding: 10px 20px;
   color: white;
   background-color: #509e2f;
}
.label-tag:after {
  content: '';
  position: absolute;
  left: 100%;
  top: 0px;
  border-width: 20px 0px 20px 20px;
  border-style: solid;
  border-color: transparent transparent transparent #509e2f;
}
Working fiddle: https://jsfiddle.net/bd45gynk/
