ALIGN DIV CONTENT TO BOTTOM
Run
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML</title>
<style>
  
  p {
     display: flex;
	 align-items: flex-end;
	 height: 450px;
	 align-text: center;
  }
  
</style>
</head>
<body>
   <div class="container">
	    <h2> Text at bottom </h2>
	     <p> Align the text to bottom </p>
		
    </div>
</body>
</html>