Use on the webTotal Use [ 6562 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/e0948f68e27c1e9f2dce7c4ae6fd8297?family=Futura+press+Press%3AAltsys+Metamorphosis%3A8%2F28%2F92" 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/e0948f68e27c1e9f2dce7c4ae6fd8297?family=Futura+press+Press%3AAltsys+Metamorphosis%3A8%2F28%2F92);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Futura press Press:Altsys Metamorphosis:8/28/92";
src: url("https://db.onlinewebfonts.com/t/e0948f68e27c1e9f2dce7c4ae6fd8297.eot");
src: url("https://db.onlinewebfonts.com/t/e0948f68e27c1e9f2dce7c4ae6fd8297.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/e0948f68e27c1e9f2dce7c4ae6fd8297.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/e0948f68e27c1e9f2dce7c4ae6fd8297.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/e0948f68e27c1e9f2dce7c4ae6fd8297.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/e0948f68e27c1e9f2dce7c4ae6fd8297.svg#Futura press Press:Altsys Metamorphosis:8/28/92")format("svg");
}
2CSS rules to specify fonts
font-family: "Futura press Press:Altsys Metamorphosis:8/28/92";