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