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