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