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