A. Custom element

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">
 <title>Custom elements</title>
 <style>
  elemento-1 {
   color: blue;
  }

  elemento-2 {
   display: block;
   background-color: aqua;
  }
 </style>
</head>

<body>
 <h1>Custom elements</h1>
 <elemento-1>Hola</elemento-1>
 <elemento-1>
  <em>Saludos</em>
 </elemento-1>
 <elemento-2>
  Estoy de buenas 😁
 </elemento-2>
</body>

</html>