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