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