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