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