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