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