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