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