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