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