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