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