描述:
HTML中的字体样式的使用。
效果展示:
代码演示:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>标题</title>
<style>
span{
color: rgb(150, 185, 125);
}
h1.h1{
font-family: 'Courier New', Courier, monospace;
}
h1.h2{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
h1.h3{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
h1.h4{
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
h1.h5{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
h1.h6{
font-family: 'Times New Roman', Times, serif;
}
h1.h7{
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
h1.h8{
font-family: Arial, Helvetica, sans-serif;
}
h1.h9{
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
h1.h10{
font-family: Georgia, 'Times New Roman', Times, serif;
}
h1.h11{
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
h1.h12{
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
</style>
</head>
<body>
<h1 class="h1">1、Hello<span>.COM</span></h1>
<h1 class="h2">2、Hello<span>.COM</span></h1>
<h1 class="h3">3、Hello<span>.COM</span></h1>
<h1 class="h4">4、Hello<span>.COM</span></h1>
<h1 class="h5">5、Hello<span>.COM</span></h1>
<h1 class="h6">6、Hello<span>.COM</span></h1>
<h1 class="h7">7、Hello<span>.COM</span></h1>
<h1 class="h8">8、Hello<span>.COM</span></h1>
<h1 class="h9">9、Hello<span>.COM</span></h1>
<h1 class="h10">10、Hello<span>.COM</span></h1>
<h1 class="h11">11、Hello<span>.COM</span></h1>
<h1 class="h12">12、Hello<span>.COM</span></h1>
<h1 class="h13">13、Hello<span>.COM</span></h1>
</body>
</html>
仅供学习使用,如有侵权,尽请告知。。。