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