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