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


HTML <basefont> size属性用法及代码示例


HTML <basefont> size属性用于指定文档的默认font-size。 <basfront>标签的face和color还有两个属性,它们指定文本的颜色和文本的font-family。 HTML 5不支持<basfront>标记。

用法:

<basefont size="number"> 

属性值:它包含单个值编号,该编号指定文本文档的font-size。它的默认值为3。


例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML basefont size Attribute 
    </title> 
      
    <basefont color="red" size="15" 
            face="courier, serif"> 
      
    <style> 
        body { 
            text-align:center; 
        } 
        h1 { 
            font-weight:bold; 
            color:green; 
        } 
        h3 { 
            font-weight:bold; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h3>HTML <basefont> size Attribute </h3> 
      
    <p>A computer science portal for geeks</p> 
      
    <p> 
        <b>Note:</b> The basefont attribute 
        is not supported in html 5 
    </p> 
</body> 
  
</html>

输出:

支持的浏览器:任何浏览器均不支持HTML <basefont >> size属性。



相关用法


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