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