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