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