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