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