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