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