首页 > 代码库 > html页面字体相关
html页面字体相关
1 <!doctype html> 2 <html> 3 <head> 4 <meta charset="utf-8"/> 5 <title>字体设置</title> 6 7 <style type="text/css"> 8 #fw{ 9 font-weight: bold; 10 } 11 #fs{ 12 font-style: italic; 13 } 14 15 </style> 16 </head> 17 <body> 18 19 <div id="fw">这是一段加粗文字</div> 20 <div id="fs">这是一段倾斜的文字</div> 21 22 <!-- 23 font 文字 24 font-weight 文字着重 25 font-size 文字大小(一般为偶数) 26 font-style 文字倾斜 27 line-height 文字行高 28 font-family 字体(中文默认宋体) 29 --> 30 <!-- 31 font-weight 文字加粗 32 bold 加粗 33 normal 正常 34 --> 35 <!-- 36 font-style 文字倾斜 37 italic 倾斜 38 normal 正常 39 --> 40 41 <!-- 42 font-family 字体 43 “主要字体”“备用字体1”“备用字体2” 44 --> 45 </body> 46 </html>
html页面字体相关
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。