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