在HTML中创建上标文本

使用<sup>标记创建上标文本。HTML <sup>标记用于定义下标文本,例如,

2<sup>3</sup> + 3<sup>2</sup> = 17

示例

您可以尝试运行以下代码以HTML显示下标的文本-

<!DOCTYPE html>
<html>
   <head>
      <title>HTML sup Tag</title>
   </head>
   <body>
      Value of 2<sup>3</sup> + 3<sup>2</sup> = 17
   </body>
</html>