/s 페이지에 소개 문구를 삽입할 수 있나요?

구글과 SO를 좀 찾아본 뒤, 순수 CSS 버전으로 만들어 보았습니다:

.above-main-container-outlet.subscriptions-campaign::after {
  content: "Whatever text I want to put here! \A This is a new line! \A";
  white-space: pre;
}

\A를 줄바꿈 문자로 사용했습니다.

도움이 되셨길 바랍니다?