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