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