I am using this tutorial to make a Triangle Top Left like so:
#triangle-topleft {
  width: 0;
  height: 0;
  border-top: 100px solid red;
  border-right: 100px solid transparent;
}
output: 
but how can I make an irregular shape similar to this but cut out a corner on the bottom right?
ex:
the html is straight forward : <div id='triangle-topleft'><div>
 
     
     
     
     
     
    