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