How to define superscripted text in HTML

Topics

Introduction

How to define superscripted text in HTML

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>www.techstudy.org</title>
</head>
<body>
<p>This text is<sup> superscript</sup> text.</p>
</body>
</html>
</html>

Result

How to define superscripted text in HTML
How to define superscripted text in HTML

Leave a Comment