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