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