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