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