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