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