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