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