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