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