<--! 超链接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">
常用参数:
- UTF-8
- GBK
- GB2312
网友评论