• 1000 *
/* add your CSS here */
<style>
container { border: 2px solid black;
}
.container {border: 2px solid black;
}
#card {
font-style: italic;
padding: 1em;
}
.animal-info {
border: 2px solid black;
}
ul {list-style: none;
padding: 1em;
}
li span { font-weight: bold;
}
h1{
padding: 1em;
}
img {
padding: 1em;
}
#summary{
padding: 1em;
}
</style>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>For the Love of Puppies</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="container">
<h1>Puppies</h1>
<img src="https://placedog.net/300/300" alt="Puppy">
<div class="animal-info">
<div id="card">
<p id="interesting-fact">Queen Elizabeth II has long been associated with
Corgis. After a visit to Thomas Thynne, 5th Marquess of Bath in 1933,
Princesses Elizabeth and Margaret made it well known to their family
that they liked the Corgis owned by the Marquess.</p> </div>
<ul id="facts">
<li>
<span>Dog Breed Group</span>: Herding Dogs
</li>
<li>
<span>Average Length</span>: 10 inches to 1 foot tall at the shoulder
</li>
<li>
<span>Average Lifespan</span>: 12 to 14 years
</li>
<li>
<span>Weight</span>: Up to 30 pounds
</li>
</ul>
<p id="summary">Welsh Corgis come in two varieties: the Pembroke and
the Cardigan. They were registered as one breed by the Kennel Club in
the U.K. until 1934, although many breeders believe the two breeds
developed separately. Both have similar heads, bodies, levels of
intelligence and herding ability, but the Cardigan is slightly
larger and heavier boned than the Pembroke.
</p>
</div>
</div>
</div>
</body>
</html>
Что мне делать, чтобы он был похож на справочную страницу? Это сводит меня с ума. Заранее спасибо ..