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