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