0
What is use of <del> tag in html?
4 odpowiedzi
+ 8
Sneha Madhale <del>   →  Defines text that has been deleted from a document
<html>
   <head>
      <title> first page </title>
   </head>
   <body>
      <p>This is regular text</p>
      <p><del> deleted text </del></p>
      <p>This is <del>deleted</del> text</p>
   </body>
</html>
👇🏻👇🏻👇🏻👇🏻👇🏻
https://www.sololearn.com/post/505956/?ref=app
+ 5
<del>......</del>
It defines text that has been deleted from a document.
+ 1
In addition to <del>,there is a <s>, but they don't mean the same.
del means that the text is removed,whereas s is just a striked text.



