In this article we will learn about some of the frequently asked HTML programming questions in technical like “html sup tag” Code Answer’s. When creating scripts and web applications, error handling is an important part. If your code lacks error checking code, your program may look very unprofessional and you may be open to security risks. Error or stack handling on html was simple and easy. An error message with filename, line number and a message describing the error is sent to the browser. This tutorial contains some of the most common error checking methods in HTML. Below are some solution about “html sup tag” Code Answer’s.
how to write superscript in html
xxxxxxxxxx
1
<sup>this text is in superscribt</sup>
html sup
xxxxxxxxxx
1
<p>This text contains <sup>superscript</sup> text.</p>
2
<style>
3
/* Default CSS : */
4
sup {
5
vertical-align: super;
6
font-size: smaller;
7
}
8
</style>
html sup tag
xxxxxxxxxx
1
<h1><span>Your</span>App<sup>TM</sup></h1>