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