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