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