Result Size: 300 x 150
x
 
<!DOCTYPE html>
<html>
<head>
<style>
.cities {
  background-color: blue;
  color: white;
  padding: 20px;
}
.cities p {text-shadow: 1px 1px 1px black}
</style>
</head>
<body>
<h2>Атрибут class</h2>
<p>Використовуйте CSS для стилізації елемента з іменем класу "cities":</p>
<div class="cities">
  <h2>London</h2>
  <p>London is the capital of England. It is the most populous city in the United Kingdom, with a metropolitan area of over 13 million inhabitants.</p>
  <p>Standing on the River Thames, London has been a major settlement for two millennia, its history going back to its founding by the Romans, who named it Londinium.</p>
</div>
</body>
</html>