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