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