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