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