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