美文网首页
HTML常用代码

HTML常用代码

作者: Seven_Star | 来源:发表于2020-01-16 17:15 被阅读0次
<--! 超链接CSS样式-->
<style type="text/css">
a:link,a:visited{
text-decoration:none; /*超链接无下划线*/
color:red;/*超链接红色*/
}
a:hover{
text-decoration:underline; /*鼠标放上去有下划线*/
color:green;/*鼠标移上绿色*/
font-family:楷体;font-size:20;/*鼠标移上字体*/
}
</style>
<--! 超链接实例-->
<a href="#">我是超链接</a>
<--!ico图标-->
<link rel="icon" type="image/png" href="#">/*"#"处填写站内文件地址或站外链接*/
<--!超链接字体颜色-->
<style type="text/css">
    a{
        color: blue;/*鼠标未放置在超链接上时为蓝色*/
        text-decoration: none;/*设置超链接下划线不显示*/
        font-size: 40px;/*设置字体大小*/
        font: 900 40px Pingfang SC;/*设置字体粗细以及字体样式*/
    }
    a:hover{
        color: red;/*鼠标经过悬停在超链接上时的颜色为红色*/
    }
</style>
<!--设置字体粗细-->
    <style>
        .p1{font:30px Pingfang SC}
        .p2{font:300 30px Pingfang SC}
        .p3{font:bold 30px Pingfang SC}
        .p4{font:900 30px Pingfang SC}
    </style>
设置字体粗细.png
<!--设置页面语言-->
<meta charset="UTF-8">

常用参数:

  1. UTF-8
  2. GBK
  3. GB2312

相关文章

网友评论

      本文标题:HTML常用代码

      本文链接:https://www.haomeiwen.com/subject/oftqzctx.html