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