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