Use on the webTotal Use [ 5663 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/b3e6f2c5ae610e4d78e044c1b44fb7c9?family=VTC+Boseephus+RegularItalic" 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/b3e6f2c5ae610e4d78e044c1b44fb7c9?family=VTC+Boseephus+RegularItalic);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "VTC Boseephus RegularItalic";
src: url("https://db.onlinewebfonts.com/t/b3e6f2c5ae610e4d78e044c1b44fb7c9.eot");
src: url("https://db.onlinewebfonts.com/t/b3e6f2c5ae610e4d78e044c1b44fb7c9.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/b3e6f2c5ae610e4d78e044c1b44fb7c9.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/b3e6f2c5ae610e4d78e044c1b44fb7c9.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/b3e6f2c5ae610e4d78e044c1b44fb7c9.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/b3e6f2c5ae610e4d78e044c1b44fb7c9.svg#VTC Boseephus RegularItalic")format("svg");
}
2CSS rules to specify fonts
font-family: "VTC Boseephus RegularItalic";