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