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