Let's look at how we can add classes to div elements to style different parts of a webpage.

<html> <head> <style> .main { background-color: peachpuff; } .secondary { background-color: #EAEAEA; } div { border: solid 3px lightGray; margin: 10px; padding: 0px 5px 5px 5px; border-radius: 20px; } img { width: 150px; } body { text-align: center; background-color: ; } </style> </head> <body> <h3>New Folker</h3> <div class="main"> <h4>Insight look at Sesame Ventures</h4> <img src="https://mimo.app/i/cookies.png"> </div> <div class="secondary"> <h4>Stock market at an all time "meh"</h4> <img src="https://mimo.app/i/coin.png" style="width:100px;height:100px;"> </div> </body> </html>]]>