Answers for "superscript html"

1

superscript in html

<p><sup>This is a superscript</sup></p>
Posted by: Guest on August-03-2021
0

html sup tag

<h1><span>Your</span>App<sup>TM</sup></h1>
Posted by: Guest on August-18-2020
1

javascript super

class Parent {
  constructor() {}
  method() {}
}
class Child extends Parent {
  constructor() {
    super() // Parent.constructor
    super.method() // Parent.method
  }
}
Posted by: Guest on December-25-2020

Browse Popular Code Answers by Language