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