Use on the webTotal Use [ 6646 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/99a230b63d67c1a1c8318bcebfe466f4?family=OfficinaSansITC+Book+SC" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/99a230b63d67c1a1c8318bcebfe466f4?family=OfficinaSansITC+Book+SC);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "OfficinaSansITC Book SC";
src: url("https://db.onlinewebfonts.com/t/99a230b63d67c1a1c8318bcebfe466f4.eot");
src: url("https://db.onlinewebfonts.com/t/99a230b63d67c1a1c8318bcebfe466f4.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/99a230b63d67c1a1c8318bcebfe466f4.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/99a230b63d67c1a1c8318bcebfe466f4.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/99a230b63d67c1a1c8318bcebfe466f4.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/99a230b63d67c1a1c8318bcebfe466f4.svg#OfficinaSansITC Book SC")format("svg");
}
2CSS rules to specify fonts
font-family: "OfficinaSansITC Book SC";