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