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