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