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