<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Advanced HTML:Task 1</title>
<style>
body {
background-color: #fff;
color: #333;
font: 1em / 1.4 Helvetica Neue, Helvetica, Arial, sans-serif;
padding: 1em;
margin: 0;
}
h1 {
font-size: 2rem;
margin: 0;
color: purple;
}
dl {
color: gray;
margin: 0.5em 0;
}
dt {
font-weight: bold;
color: purple;
}
* {
box-sizing: border-box;
}
</style>
</head>
<body>
<h1>Advanced HTML Animals</h1>
<dl>
<dt>Llama</dt>
<dd>Tall, wooly quadraped, pointy ears. Sometimes rideable, but grumpy and spits a lot. Big fan of list items.</dd>
<dt>Anaconda</dt>
<dd> A very large constrictor snake; travels rapidly by way of anchors to sneak up on his prey.</dd>
<dt>Hiphopapotamus</dt>
<dd>His description is bottomless.</dd>
</dl>
</body>
</html>
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.