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