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