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