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