<div class="container">
  <blockquote>
    <p>Puedes utilizar textos en negrita, no te parece increible?. También puedes indicar textos remarcados con la etiqueta mark. </p>
    <p>Si necesitas insertar un enlace utiliza la etiqueta a, si no te gusta, borra esta propiedad del CSS.</p>
    <p>Un texto en subíndice con sub y un texto superíndice con sup.</p>
  </blockquote>
</div>
@import url("https://fonts.googleapis.com/css2?family=Exo:wght@600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  inline-size: 100vw;
  min-block-size: 100vh;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Exo", Arial, sans-serif;
  background-color: #f7f7f7;
  line-height: 2;
}

.container {
  padding: 40px;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 2px 4px rgb(0 0 0 / 20%);
  min-width: 40vw;
  max-width: 40vw;
  border-radius: 5px;
  position: relative;
}

p + p {
  margin-top: 1rem;
}

blockquote p::before {
  content: no-open-quote;
}
blockquote p::after {
  content: no-close-quote;
}

blockquote p:first-child::before {
  content: open-quote;
  color: #f36;
  font-size: 3rem;
  line-height: 1;
  vertical-align: -0.25em;
}
blockquote p:last-child::after {
  content: close-quote;
  color: #f36;
  font-size: 3rem;
  line-height: 1;
  vertical-align: -0.25em;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.