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