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