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