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