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