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