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