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


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


HTML face属性用于指定文档的默认font-style。

用法:

<basefont face="font_family">

属性值:它包含值,即font_Family,它指定用于文档中文本的各种字体样式。


例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      basefont face Attribute 
  </title> 
    <basefont color="red" 
              size="9"
              face="courier, serif"> 
    <style> 
        body { 
            text-align:center; 
        } 
          
        .gfg { 
            font-size:40px; 
            font-weight:bold; 
            color:green; 
        } 
          
        .geeks { 
            font-size:25px; 
            font-weight:bold; 
        } 
    </style> 
</head> 
  
<body> 
    <div class="gfg"> 
      GeeksforGeeks 
  </div> 
    <div class="geeks"> 
      HTML basefont face Attribute  
  </div> 
    <p> 
      A computer science portal for geeks 
  </p> 
</body> 
  
</html>

输出:

支持的浏览器:<basefont> face支持的浏览器如下:

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • Safari
  • Opera


相关用法


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