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