欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

【代码笔记】Web-CSS-CSS Fonts(字体)

程序员文章站 2022-07-05 15:32:07
一,效果图。 二,代码。 参考资料:《菜鸟教程》 ......

一,效果图。

【代码笔记】Web-CSS-CSS Fonts(字体)

 

二,代码。

 

【代码笔记】Web-CSS-CSS Fonts(字体)
<!doctype html>
<html>

<head>
    <meta charset="utf-8">
    <title>css fonts(字体)</title>
    <style>
    body {
        font-size: 100%;
    }
    
    h1 {
        font-style: normal;
        font-size: 40px;
        font-size: 2.5em;
    }
    
    p.serif {
        font-family: "times new roman", times, serif;
        font-style: italic;
        font-size: 30px;
        font-size: 1.875em;
    }
    
    p.sansserif {
        font-family: arial, helvetica, sans-serif;
        font-style: oblique;
        font-size: 14px;
        font-size: 0.875em;
    }
    </style>
</head>

<body>
    <h1>css font-family</h1>
    <p class="serif">this is a paragrapth,shown in the times new roman font.</p>
    <p class="sansserif">this is a paragraph,shown in the arial font.</p>
</body>

</html>
【代码笔记】Web-CSS-CSS Fonts(字体)

 

参考资料:《菜鸟教程》