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