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