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