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