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