当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML5 MathML href属性用法及代码示例


href属性用于指定链接文档的URL。所有MathML标记都接受此属性。

用法:

<element href="valid URL">

属性值:

  • href:此属性用于指定链接文档的URL。

下面的示例说明HTML5 MathML中的href属性:

例:



<!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>

输出:

支持的浏览器:下面列出了HTML5 MathML href属性支持的浏览器:

  • Firefox




相关用法


注:本文由纯净天空筛选整理自skyridetim大神的英文原创作品 HTML5 MathML href Attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。