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