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