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