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