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