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