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