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