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