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