Three New Tags

< del> Delete and Insert < /del>


The delete tag allows users to strike a line through text. The insert tag allows the user to replace that stricken text with another set of text. Please note the example below:


Scratching the iceberg surface.



The code that produced the output above looks like this:


< p>Scratching the < del>iceberg< /del> < ins>surface.< /ins>< /p> < br>


I found this tag at duda.co




< button>Button< /button>


The button tag allows the user to create a clickable button. The onclick marker indicates what is triggered by the button. Please note the example below:





The code that produced the output above looks like this:


< center>< button onclick="alert('Button!')">Button!< /button>< /center>


I found this tag at w3schools.com



< details> Details and Summary < details>


The details and summary tags allow the user to create a collapsible passage within a webpage. Please note the example below:



Click to see moreThe summary tag is used in conjunction with the details tag to determine the text that shows next to the dropdown arrow.



The code that produced the output above looks like this:


< details>< summary>Click to see more< /summary>The summary tag is used in conjunction with the details tag to determine the text that shows next to the dropdown arrow.< /details>


I found this tag at ossph.org