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