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