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