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