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