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