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