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