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