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