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