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