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