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