<header>
<h1>Header</h1>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none">
<polygon points="0,100 100,0 100,100"/>
</svg>
</header>
<article>
<section>
<h2>Content</h2>
</section>
</article>
header {
position: relative;
height: 200px;
background: #00bcd4;
}
svg {
position: absolute;
bottom: 0;
width: 100%;
height: 100px;
fill: #80deea;
}
section {
background: #80deea;
}
h1,h2 {
margin: 0;
padding: 1em 0;
text-align: center;
color: #ffffff;
}