<!DOCTYPE html>
<html>
<head>
<style>
.country {
  background-color: tomato;
  color: white;
  border: 2px solid black;
  margin: 20px;
  padding: 20px;
}
</style>
</head>
<body>

<div class="country">
  <h2>England</h2>
  <p>England is part of the United Kingdom.</p>
</div>

<div class="country">
  <h2>France</h2>
  <p>France is known for its cuisine and art.</p>
</div>

<div class="country">
  <h2>Japan</h2>
  <p>Japan is an island nation in East Asia.</p>
</div>

</body>
</html>

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.