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