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

2019-01-21 02:37:45来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

一,效果图。

 

二,代码。

 

复制代码
<!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>
复制代码

 

参考资料:《菜鸟教程》


原文链接:https://www.cnblogs.com/yang-guang-girl/p/10280444.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:移动端网站开发前端学习总结

下一篇:【代码笔记】Web-CSS-CSS 链接(link)