El atributo href se utiliza para especificar la URL del documento vinculado. Este atributo es aceptado por todas las etiquetas de MathML.
Sintaxis:
<element href="valid URL">
Valor de atributo:
- href: este atributo se utiliza para especificar la URL del documento vinculado.
El siguiente ejemplo ilustra el atributo href en HTML5 MathML:
Ejemplo:
<!DOCTYPE html> <html> <head> <title> HTML5 MathML href attribute </title> <style> mi { font-size: 25px; } </style> </head> <body> <center> <h1 style="color:green"> GeeksforGeeks </h1> <h3>HTML5 MathML href attribute</h3> <math> <math> <mi mathvariant="bold" href= "https://www.geeksforgeeks.org/"> GeeksforGeeks </mi> <br> </math> <math> <mi mathvariant="italic"> A Computer Science Portal for Geeks </mi> </math> </math> </center> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo href de HTML5 MathML se enumeran a continuación:
- Firefox
Publicación traducida automáticamente
Artículo escrito por skyridetim y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA