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