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