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