Skip to content

<body> Tag

The <body> tag contains the visible content of your USSD page.

Rules

IMPORTANT

  • If the <body> contains neither <a> nor a <form>, it is considered a terminal screen. This means the program ends, and no user input is expected.

Example

html
<body>
  Welcome to our service!
  <p>Please choose an option:</p>
  <a href="http://localhost:8888/pay">Pay Now</a>
</body>