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