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