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