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