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