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