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