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