當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。