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