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