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