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