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