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