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