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