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