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