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