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