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