Skip to content

<p> Tag

The <p> tag allows you to add paragraphs of text to your USSD screens.

Rules

  • Place inside <body>, before any <a> or <form>.
  • Multiple <p> tags are allowed.

INFO

Plain text is allowed, but using <p> is recommended

html
  Welcome to our service.
  Choose an option below.

DANGER

Nesting <p> tags will cause an error.

html
  <p>Welcome to our service.
    <p>Choose an option below.</p>
  </p>

Example

html
<body>
  <p>Paragraph 1</p>
  <p>Paragraph 2</p>
</body>
Result
bash
Paragraph 1
Paragraph 2