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