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