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