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