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