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