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