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