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