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