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