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