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