How can I apply gradient letters to my webpage?

How to put gradient letters like these on a given page.

site: Text Gradient generator (textgradients.com)

This is the page on my website where I would like to apply.

Carteira Essencial 2 - A carteira inteligente. – H.MAN (hman.com.br)

You could try adding this to the bottom of your base.css file and clicking Save:

h2 {
  background: #ff0000; /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #ff0000, #9932cc); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #ff0000, #9932cc); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

Thank you so much for trying to help, but it still didn’t work