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