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