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