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