En este artículo, definimos una parte de un texto en una voz o un estado de ánimo alternativo mediante el uso de la etiqueta <i> en el documento HTML. Se utiliza para mostrar el contenido en cursiva. Generalmente, se utiliza para mostrar el término técnico, la frase o las palabras importantes de algún idioma o tecnología diferente.
Sintaxis:
<i> Contents... </i>
Ejemplo:
<!DOCTYPE html> <html> <head> <title> How to define a part of text in an alternate voice or mood using HTML5? </title> <style> body { text-align: center; } h1 { color: green; } </style> </head> <body> <i> <h1>GeeksforGeeks</h1> </i> <h2> <i> How to define a part of text in an alternate voice or mood using HTML5? </i> </h2> <p> The text content are in italic font. </p> <i> It is computer science portal for Geeks </i> </body> </html>
Producción:
Los navegadores compatibles se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- Ópera
- Safari
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA