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