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