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