Topic: How to create striked text in html?
I want to give base and power text in html?
I want to give base and power text in html?
Explanation:
Striked
Font: <strike> </strike>
Any text given in between this tags will appear striked
Example:
<strike> This is striked text </strike>
Result: This is striked text
Any text given in between this tags will appear striked
Example:
<strike> This is striked text </strike>
Result: This is striked text
Sub script Font: <sub> </sub>
This tag will help in creating sub script or base text (e.g log base 10).
Example:
Test <sub> Sub (base) Text </sub>
Result:
Test Sub (base) Text
This tag will help in creating sub script or base text (e.g log base 10).
Example:
Test <sub> Sub (base) Text </sub>
Result:
Test Sub (base) Text
Super script Font: <sup> </sup>
This tag will help in creating super script text (power text - e.g: x power y).
Example:
Test <sup> Super (power) Text </sup>
Result:
Test Super (power) Text
This tag will help in creating super script text (power text - e.g: x power y).
Example:
Test <sup> Super (power) Text </sup>
Result:
Test Super (power) Text