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