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