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