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