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