91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

html如何設置字體

發布時間:2020-12-07 12:29:09 來源:億速云 閱讀:464 作者:小新 欄目:web開發

這篇文章主要介紹html如何設置字體,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

在HTML網頁設計中,字體樣式的設置是最為基礎的。網頁中設置合適的字體,可以提高用戶體驗。那么字體的設置主要用到css中font-family和font-style等字體相關屬性。

html如何設置字體

下面給大家介紹幾種常見的HTML字體樣式!

代碼示例:

<!DOCTYPE>
<html>
<meta charset="utf-8">
<head>
    <title></title>
    <style type="text/css">
        h3 { color: green; }

        #p1 { font-family: Times, "Times New Roman", serif; }
        #p2 { font-family: Helvetica, Arial, sans-serif; }
        #p3 { font-family: serif; }
        #p4 { font-family: sans-serif; }
        #p5 { font-family: monospace; }
        #p6 { font-family: cursive; }
        #p7 { font-family: fantasy; }

        .s1 { font-style: italic; }
        .s2 { font-style: oblique; }
        .s3 { font-weight: bold; }
        .s4 { font-weight: 100; }
        .s5 { font-style: normal;}
    </style>

</head>
<body>
<h2>字體系列</h2>
<p>與CSS一起使用。兩個常見的字體組合列表和五個通用后備字體系列。</p>
一個serif字體家族列表!
<h3>font-family: Times, "Times New Roman", serif</h3>
<p id="p1">
    <span class="s1">斜體字體!</span>
    <span class="s2">字體樣式為font-style: oblique; </span>
    <span class="s3">字體樣式為font-weight: bold;</span>
    <span class="s4">字體樣式為font-weight: 100;</span>
    <span class="s5">正常字體樣式!</span>
</p>
一個sans-serif字體家族列表!
<h3>font-family: Helvetica, Arial, sans-serif</h3>
<p id="p2">
    <span class="s1">斜體字體!</span>
    <span class="s2">字體樣式為font-style: oblique; </span>
    <span class="s3">字體樣式為font-weight: bold;</span>
    <span class="s4">字體樣式為font-weight: 100;</span>
    <span class="s5">正常字體樣式!</span>
</p>
serif通用字體系列!
<h3>font-family: serif</h3>
<p id="p3">
    <span class="s1">斜體字體!</span>
    <span class="s2">字體樣式為font-style: oblique; </span>
    <span class="s3">字體樣式為font-weight: bold;</span>
    <span class="s4">字體樣式為font-weight: 100;</span>
    <span class="s5">正常字體樣式!</span>
</p>
sans-serif通用字體系列!
<h3>font-family: sans-serif</h3>
<p id="p4">
    <span class="s1">斜體字體!</span>
    <span class="s2">字體樣式為font-style: oblique; </span>
    <span class="s3">字體樣式為font-weight: bold;</span>
    <span class="s4">字體樣式為font-weight: 100;</span>
    <span class="s5">正常字體樣式!</span>
</p>
等寬通用字體系列!
<h3>font-family: monospace</h3>
<p id="p5">
    <span class="s1">斜體字體!</span>
    <span class="s2">字體樣式為font-style: oblique; </span>
    <span class="s3">字體樣式為font-weight: bold;</span>
    <span class="s4">字體樣式為font-weight: 100;</span>
    <span class="s5">正常字體樣式!</span>
</p>
草書字體家族!
<h3>font-family: cursive</h3>
<p id="p6">
    <span class="s1">斜體字體!</span>
    <span class="s2">字體樣式為font-style: oblique; </span>
    <span class="s3">字體樣式為font-weight: bold;</span>
    <span class="s4">字體樣式為font-weight: 100;</span>
    <span class="s5">正常字體樣式!</span>
</p>
幻想通用字體系列!
<h3>font-family: fantasy</h3>
<p id="p7">
    <span class="s1">斜體字體!</span>
    <span class="s2">字體樣式為font-style: oblique; </span>
    <span class="s3">字體樣式為font-weight: bold;</span>
    <span class="s4">字體樣式為It sucks in with a 100 font-weight!</span>
    <span class="s5">正常字體樣式!</span>
</p>

</body>
</html>

前臺效果如下圖:

html如何設置字體

html如何設置字體

font-family 規定元素的字體系列。font-family 可以把多個字體名稱作為一個“回退”系統來保存。如果瀏覽器不支持第一個字體,則會嘗試下一個。也就是說,font-family 屬性的值是用于某個元素的字體族名稱或/及類族名稱的一個優先表。瀏覽器會使用它可識別的第一個值。

有兩種類型的字體系列名稱:

指定的系列名稱:具體字體的名稱,比如:"times"、"courier"、"arial"。

通常字體系列名稱:比如:"serif"、"sans-serif"、"cursive"、"fantasy"、"monospace"

提示:使用逗號分割每個值,并始終提供一個類族名稱作為最后的選擇。

注意:使用某種特定的字體系列(Geneva)完全取決于用戶機器上該字體系列是否可用;這個屬性沒有指示任何字體下載。因此,強烈推薦使用一個通用字體系列名作為后路。

font-style 屬性定義字體的風格。該屬性設置使用斜體、傾斜或正常字體。斜體字體通常定義為字體系列中的一個單獨的字體。理論上講,用戶代理可以根據正常字體計算一個斜體字體。

以上是“html如何設置字體”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

射阳县| 达拉特旗| 晋州市| 阳江市| 巧家县| 印江| 宜兰市| 久治县| 怀宁县| 和田市| 巩义市| 衡阳县| 阜康市| 阿克陶县| 邵阳县| 贵阳市| 永和县| 夏邑县| 枣强县| 富民县| 丽江市| 长阳| 长白| 龙南县| 丹寨县| 繁峙县| 博客| 蓬溪县| 光泽县| 仪陇县| 观塘区| 本溪市| 平塘县| 类乌齐县| 新平| 临汾市| 中阳县| 武平县| 吴桥县| 怀仁县| 阜新|