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