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