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