En este artículo, aprenderemos cómo definir un texto que se ha insertado en un documento. Esto se puede usar para mostrar cambios recientes en el contenido del texto y se usa principalmente después de que el texto se elimine o esté desactualizado.
Acercarse:
Usaremos el elemento <ins> para especificar el texto que se ha insertado en el documento. El navegador suele añadir un subrayado al texto presente en esta etiqueta para distinguirlo del resto del contenido. Este elemento tiene dos atributos que se pueden usar para especificar la cita y la hora en que se realizó el cambio.
Sintaxis:
<ins> Inserted Iext& lt;/ins>
El siguiente ejemplo ilustra el elemento <ins> para definir el texto que se ha insertado en un documento.
Ejemplo:
HTML
<!DOCTYPE html> <html> <body> <h1 style="color: green;"> GeeksforGeeks </h1> <b> How to define a text that has been inserted into a document </b> <!-- Simple usage of <ins> element --> <p> The exam would be held on <del>Monday</del> <ins>Friday</ins> at 5PM. </p> <!-- Using the <ins> element with the cite and datetime attribute --> <p> The venue for the exam is <del>Hall A</del> <ins cite="https://www.geeksforgeeks.org" datetime="2018-11-21T15:55:03Z"> Hall C </ins>. </p> </body> </html>
Producción:
Publicación traducida automáticamente
Artículo escrito por sayantanm19 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA