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