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