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