Let's learn how to style groups of elements on a webpage with the help of div elements.

<html> <head> <style>div {border: solid 3px lightGray; background-color: bisque; margin: 20px; padding: 10px; text-align: center;}</style> </head> <body> <div> <h1>Sesame Ventures</h1> <h4>A fund that invests in education.</h4> </div> </body> </html>]]>