F. Esquinas redondas (border-radius)

Ejemplo

Salida

Ábrelo en otra pestaña.

Revísalo en gilpgedit.

<!DOCTYPE html>
<html lang="es">
<head>
 <meta charset="UTF-8">
 <meta name="viewport"
   content="width=device-width,
       initial-scale=1.0">
 <title>border-radius</title>
 <style>
  body {
   color:yellow
  }

  h1 {
   background-colorblue;
   border-top-right-radius10px;
   border-top-left-radius5px;
   border-bottom-right-radius:
    20px;
   border-bottom-left-radius:
    2rem
  }

  div {
   background-colorroyalblue;
   padding0.5rem 1rem;
   border-radius30px
  }

  p {
   background-colorblueviolet;
   padding0.5rem 1.5rem;
   border-radius:
    10px 20px 30px 40px;
  }
 </style>
</head>
<body>
 <h1>border-radius</h1>
 <div>Esquinas</div>
 <p>Redondas</p>
</body>
</html>