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