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