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