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