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