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